home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource3 / 111_01 / crck4.doc < prev    next >
Encoding:
Text File  |  1985-08-21  |  768 b   |  23 lines

  1.         CYCLIC REDUNDANCY CHECK PROGRAM
  2.             Version 4.2B
  3.            Keith Petersen, W8SDZ
  4.            (REVISED 4/27/ BY BRK)
  5.  
  6.  
  7.  
  8. CRCK reads a CP/M file and prints a CYCLIC-REDUNDANCY-CHECK number,
  9. based on the CCITT standard polynominal:
  10.  
  11.     X^16 + X^15 + X^13 + X^7 + X^4 + X^2 + X + 1
  12.  
  13.  
  14. COMMANDS:   CRCK filespec [F]
  15.  
  16.     The filespec may designate a drive, and may be ambiguous.
  17.     If 'F' is used, CRCK will write an output file to the default
  18.     drive, listing the CRC's of all files checked.  Examples:
  19.  
  20.     CRCK MYFILE.ASM    ;Check only MYFILE.ASM.
  21.     CRCK B:*.ASM    ;Check all .ASM files on drive B.
  22.     CRCK *.* F    ;Check ALL files, and make file of results.
  23.