home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / lambda / soundpot / f / kmd20.lbr / XMODEM.AZM / XMODEM.ASM
Encoding:
Assembly Source File  |  1993-10-26  |  768 b   |  42 lines

  1. ; XMODEM.DOC
  2. ;
  3. ; This file when named to XMODEM.COM will display a short message
  4. ; telling the user KMD is being used on this system instead of XMODEM.
  5. ;
  6. ;
  7.     ORG    0100H
  8.  
  9. CR    EQU    0DH
  10. LF    EQU    0AH
  11. ;
  12. ;
  13.     LXI    H,0
  14.     DAD    SP
  15.     SHLD    STACK
  16.     LXI    SP,STACK
  17. ;
  18.     MVI    C,9
  19.     LXI    D,MSG1
  20.     CALL    5
  21. ;
  22.     XRA    A
  23.     LHLD    STACK
  24.     SPHL
  25.     RET
  26. ;.....
  27. ;
  28. ;
  29. MSG1:    DB    CR,LF
  30.     DB    CR,LF,'   KMD is used on this system to replace '
  31.     DB    'XMODEM.  It is used like',CR,LF,'   XMODEM but '
  32.     DB    'also supports 1k protocol, both manual and automatic.'
  33.     DB    CR,LF,'   KMD also supports 1k YAM-type batch mode, '
  34.     DB    'both send and receive.',CR,LF,CR,LF,'$'
  35. ;.....
  36. ;
  37. ;
  38.     DS    20
  39. STACK    DS    0
  40. ;
  41.     END
  42.