home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Oakland CPM Archive
/
oakcpm.iso
/
sigm
/
vol157
/
ataribus.lbr
/
ATARI.LIB
< prev
next >
Wrap
Text File
|
1985-03-13
|
896b
|
29 lines
;************************************************
; ATARI.LIB - 7/8/82
; Assembler library of data for ATARI-CPM
; interface.
; WILL HAVE TO BE CHANGED FOR DIFFERENT SYSTEMS
;************************************************
; PORT equates
a2661 equ 2Ch ;base of ATARI 2661-2
adata equ a2661+0 ;data port
astat equ a2661+1 ;status port
acstat equ astat ;CMD- bit status port
amode equ a2661+2 ;mode registers port
acmd equ a2661+3 ;command port
; PORT BIT equates
AXRDYB equ 01h ;xmit ready
ARCVDB equ 02h ;received char
ACMDFB equ 80h ;CMD- line from bus
AERRSB equ 38h ;error bits
; characters
ACK equ 'A' ;acknowledge
NAK equ 'N' ;negative acknowledge
CMPL equ 'C' ;operation complete
ERR equ 'E' ;operation error
;************************************************