home *** CD-ROM | disk | FTP | other *** search
- ; XMODEM.DOC
- ;
- ; This file when named to XMODEM.COM will display a short message
- ; telling the user KMD is being used on this system instead of XMODEM.
- ;
- ;
- ORG 0100H
-
- CR EQU 0DH
- LF EQU 0AH
- ;
- ;
- LXI H,0
- DAD SP
- SHLD STACK
- LXI SP,STACK
- ;
- MVI C,9
- LXI D,MSG1
- CALL 5
- ;
- XRA A
- LHLD STACK
- SPHL
- RET
- ;.....
- ;
- ;
- MSG1: DB CR,LF
- DB CR,LF,' KMD is used on this system to replace '
- DB 'XMODEM. It is used like',CR,LF,' XMODEM but '
- DB 'also supports 1k protocol, both manual and automatic.'
- DB CR,LF,' KMD also supports 1k YAM-type batch mode, '
- DB 'both send and receive.',CR,LF,CR,LF,'$'
- ;.....
- ;
- ;
- DS 20
- STACK DS 0
- ;
- END