home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / sigm / vol157 / ataribus.lbr / ATARI.LIB < prev    next >
Text File  |  1985-03-13  |  896b  |  29 lines

  1. ;************************************************
  2. ;    ATARI.LIB - 7/8/82
  3. ; Assembler library of data for ATARI-CPM
  4. ; interface.
  5. ; WILL HAVE TO BE CHANGED FOR DIFFERENT SYSTEMS
  6. ;************************************************
  7.  
  8. ; PORT equates
  9. a2661    equ    2Ch        ;base of ATARI 2661-2
  10. adata    equ    a2661+0        ;data port
  11. astat    equ    a2661+1        ;status port
  12. acstat    equ    astat        ;CMD- bit status port
  13. amode    equ    a2661+2        ;mode registers port
  14. acmd    equ    a2661+3        ;command port
  15.  
  16. ; PORT BIT equates
  17. AXRDYB    equ    01h        ;xmit ready
  18. ARCVDB    equ    02h        ;received char
  19. ACMDFB    equ    80h        ;CMD- line from bus
  20. AERRSB    equ    38h        ;error bits
  21.  
  22. ; characters
  23. ACK    equ    'A'        ;acknowledge
  24. NAK    equ    'N'        ;negative acknowledge
  25. CMPL    equ    'C'        ;operation complete
  26. ERR    equ    'E'        ;operation error
  27.  
  28. ;************************************************
  29.