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

  1. Motorola S19...
  2. ;
  3. ;Motorola S19 is an ascii formatted file
  4. ;
  5. ;First a 'S' ascii character 83 ascii -> 53 hex
  6. ASCB 53
  7. ;Then a '1' ascii character 49 ascii -> 31 hex
  8. ASCB 31
  9. ;Hold in memory the following number &Hxx (hex number so NUMH)
  10. NUMH
  11. ;Skip the following 2 hex numbers &Hxxxx
  12. SKPH 2
  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