home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / sigm / vol281 / cmpcode.doc < prev    next >
Encoding:
Text File  |  1986-06-11  |  773 b   |  32 lines

  1.  
  2.  
  3.                 "cmpcode"
  4.  
  5.                (C) P.F.Ridler 1985
  6.  
  7.  
  8.         This program compares two object code files and reprots
  9.     the first 20 differences between them together with the addresses
  10.     at which the differences occur.
  11.  
  12.         The command line is:
  13.  
  14.             cmpcode  d1:name1.ext1  d2:name2.ext2    
  15.  
  16.  
  17.         The program will then read each file, compare the two, and
  18.     if they are identical display the message
  19.  
  20.             Files are identical
  21.  
  22.         If one file is of a different length from the other then
  23.     this fact will be reported.
  24.  
  25.         If there are differences between the files then the first
  26.     twenty differences will be reported together with the addresses at
  27.     which these differences occur.
  28.  
  29.         The main use of the program is to ensure that the same code
  30.     is produced by two versions of an assembler or compiler.
  31.  
  32.