forked from n6il/cocoio-dw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
COCOIOEQU.asm
34 lines (31 loc) · 1.37 KB
/
COCOIOEQU.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
;*********************************************************************
;* Title: COCOIOEQU.asm
;*********************************************************************
;* Author: R. Allen Murphey
;*
;* License: Contributed 2021 by R. Allen Murphey to CoCoIO Development
;*
;* Description: CoCoIO for Color Computer Equates
;*
;* Documentation: https://www.wiznet.io/product-item/w5100s/
;*
;* Include Files: none
;*
;* Assembler: lwasm 1.4.2
;*
;* Revision History:
;* Rev # Date Who Comments
;* ----- ----------- ------ ---------------------------------------
;* 00 2021 RAM Initial equates from Rick Ulland's Notes
;*********************************************************************
; CoCoIO with Jumper set to 0xFF6x Range
CIO0CMND: equ $FF68 ; CoCoIO Command Register
CIO0ADDR: equ $FF69 ; CoCoIO Address Register MSB
;$FF6A ; CoCoIO Address Register LSB
CIO0DATA: equ $FF6B ; CoCoIO Read/Write Data Register
; CoCoIO with Jumper set to 0xFF7x Range
CIO1CMND: equ $FF78 ; CoCoIO Command Register
CIO1ADDR: equ $FF79 ; CoCoIO Address Register MSB
;$FF7A ; CoCoIO Address Register LSB
CIO1DATA: equ $FF7B ; CoCoIO Read/Write Data Register
; End of CoCoIO equates