home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / demon / amstrad / setfontz.arc / ALTER12.Z80 next >
Encoding:
Text File  |  1994-03-21  |  1.1 KB  |  47 lines

  1.     .Z80        ;ALTER v1.02. Assemble this file.
  2. ;
  3.     CSEG
  4. ;
  5. ; Graphics:
  6. ;
  7. GTLC    EQU    134    ;Top left corner
  8. GTRC    EQU    140    ;Top right corner
  9. GBLC    EQU    131    ;Bottom left corner
  10. GBRC    EQU    137    ;Bottom right corner
  11. GTL    EQU    138    ;Top line
  12. GBL    EQU    GTL    ;Bottom line
  13. GLL    EQU    133    ;Left side
  14. GRL    EQU    GLL    ;Right side
  15. GLJ    EQU    130    ;Left side /internal line junction
  16. GRJ    EQU    136    ;Right side/internal line junction
  17. GIL    EQU    154    ;Internal line
  18. GTLJ    EQU    139    ;Left side /top line junction
  19. GTRJ    EQU    GTLJ    ;Right side/top line junction
  20. ;
  21. ;Screen control codes:
  22. ;
  23. ESC    EQU    1BH    ;EXIT, BREAK, ESCAPE etc.
  24. CR    EQU    0DH    ;RETURN, ENTER etc.
  25. LF    EQU    0AH
  26. ;
  27. ;Codes produced by cursor keys:
  28. ;
  29. LA    EQU    1    ;Left arrow
  30. RA    EQU    6    ;Right arrow
  31. UA    EQU    31    ;Up arrow
  32. DA    EQU    30    ;Down arrow
  33.  
  34. WBOOT    EQU    0000H
  35. FDOS    EQU    0005H
  36. FCB    EQU    005CH    ;CP/M FCB
  37. DMA    EQU    0080H    ;Default DMA buffer
  38.  
  39. HIADD    EQU    0D001H    ;Address of routines in high memory.
  40.  
  41.     .printx    'Reading ALTER12A.Z80'
  42.     INCLUDE    ALTER12A.Z80
  43.     .printx    'Reading ALTER12B.Z80'
  44.     INCLUDE    ALTER12B.Z80
  45.  
  46.     END
  47.