home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 December / simtel1292_SIMTEL_1292_Walnut_Creek.iso / msdos / filutl / comphex.arc / COMPHEX.DOC < prev    next >
Text File  |  1986-10-06  |  979b  |  37 lines

  1. COMPHEX is an MS-DOS 2.0 or greater file utility designed to compare two Intel
  2. format hex files in such a way as to determine whether they would produce
  3. identical ROMs.  The maximum object module size is 7EA7 hex.  This is 159 hex
  4. (345 decimal) bytes short of a 27256 EPROM.
  5.  
  6. The command syntax is:
  7.  
  8.         [d:]comphex [d:]filespecA [d:]filespecB
  9.  
  10. where [d:] is an optional drive designator, filespecA is the path and file
  11. name of the first input file, and filespecB is the path and name of the
  12. second output file.
  13.  
  14. COMPHEX writes filenames, mismatches and a summary to standard output.  The
  15. following is a sample output:
  16.  
  17. FILE A = allz80a.hex 
  18. FILE B = allz80b.hex
  19.  
  20. ADDR    FILE A  FILE B
  21. ----    ------  ------
  22. 0046    04    05
  23. 0047    05    04
  24. 0110    75    77
  25. 0111    77    75
  26. 0123    89    8A
  27. 0124    8A    89
  28. 013D    A3    A4
  29. 013E    A4    A3
  30. 014B    B1    B2
  31. 014C    B2    B1
  32.  
  33. HIGHEST ADDRESS: 081F
  34. MISMATCH COUNT:  000A
  35.  
  36. If there are no mismatches, only the filenames and summary are written.
  37.