home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / Software / TemaCD / Hackman / _SETUP.1 / intelhex.hfm < prev    next >
Text File  |  1998-11-28  |  510b  |  21 lines

  1. IntelHex hexadecimal records...
  2. ;
  3. ;IntelHex format is an ascii formatted file
  4. ;
  5. ;First a ':' and we use ASCB because it's in ascii.
  6. ASCB 3A
  7. ;Hold in memory the following number &Hxx (hex number so NUMH)
  8. NUMH
  9. ;Skip the following 2 hex numbers &Hxxxx
  10. SKPH 2
  11. ;Next there is a 00 null byte in hex
  12. HEXB 00
  13. ;SKiP Hex numbers the memory number read by 0=NUMH
  14. SKPH 0
  15. ;The next hex byte is the checksum but it's unsupported so ignored
  16. SKPH 1
  17. ; Finally &H0A and &H0D ascii bytes
  18. ASCB 0D
  19. ASCB 0A
  20. STOP
  21.