home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / KAYPRO / WS-KP25P.LBR / WS25.MQC / WS25.MAC
Text File  |  2000-06-30  |  1KB  |  74 lines

  1. ; WS25.MAC
  2. ; John C. Smith
  3. ; 6/10/85
  4. ;
  5. ; This file writes the key definition to the 25th line
  6. ; of the Kaypro 10 display.  It is used in conjunction with
  7. ; setkey and the appropriate key file.
  8. ;
  9. ;
  10.     .z80
  11.     aseg
  12.     org    100h
  13.     ld    c,09
  14.     ld    de,msg
  15.     jp    0005
  16. ;
  17. ; The command line message:
  18. ;
  19. msg:    db    1bh,'B6',1bh,'B7',1bh,'=8 '
  20.     db    1bh,'B11',1bh,'C1',1bh,'B0'
  21.  
  22.     db    'HELP  '
  23.  
  24.     db    1bh,'C0 '
  25.     db    1bh,'B12',1bh,'C1',1bh,'B0'
  26.  
  27.     db    'INDENT'
  28.  
  29.     db    1bh,'C0 '
  30.     db    1bh,'B13',1bh,'C1',1bh,'B0'
  31.  
  32.     db    'SET LM'
  33.  
  34.     db    1bh,'C0 '
  35.     db    1bh,'B14',1bh,'C1',1bh,'B0'
  36.  
  37.     db    'SET RM'
  38.  
  39.     db    1bh,'C0 '
  40.     db    1bh,'B15',1bh,'C1',1bh,'B0'
  41.  
  42.     db    'UNDLIN'
  43.  
  44.     db    1bh,'C0 '
  45.     db    1bh,'B16',1bh,'C1',1bh,'B0'
  46.  
  47.     db    'BLDFCE'
  48.  
  49.     db    1bh,'C0 '
  50.     db    1bh,'B17',1bh,'C1',1bh,'B0'
  51.  
  52.     db    'BEGBLK'
  53.  
  54.     db    1bh,'C0 '
  55.     db    1bh,'B18',1bh,'C1',1bh,'B0'
  56.  
  57.     db    'ENDBLK'
  58.  
  59.     db    1bh,'C0 '
  60.     db    1bh,'B19',1bh,'C1',1bh,'B0'
  61.  
  62.     db    'BEGFIL'
  63.  
  64.     db    1bh,'C0 '
  65.     db    1bh,'B10',1bh,'C1',1bh,'B0'
  66.  
  67.     db    'ENDFIL'
  68.  
  69.     db    1bh,'C0'
  70.     db    1bh,'C6'
  71.     db    '$'
  72.  
  73.     end
  74.