Mercurial > hg > Members > kono > nitros9-code
annotate defs/atarivtio.d @ 2661:9e9ed6d6b4c2
Updated so that scdwn handles SS.Montr
dw3 now handles vwindow
author | Boisy Pitre <boisy.pitre@nuance.com> |
---|---|
date | Fri, 13 Jul 2012 21:46:26 -0500 |
parents | d1ea3dc90082 |
children | 31cd1f1b4fb0 |
rev | line source |
---|---|
2624 | 1 IFNE ATARIVTIO.D-1 |
2 ATARIVTIO.D SET 1 | |
3 | |
4 ******************************************************************** | |
5 * VTIO Defs for the Atari XE/XL | |
6 * Everything that the VTIO driver needs is defined here, including | |
7 * static memory definitions | |
8 | |
9 * Constant Definitions | |
10 KBufSz EQU 8 circular buffer size | |
11 | |
12 | |
13 * Driver Static Memory | |
14 ORG V.SCF | |
15 V.CurRow RMB 1 | |
16 V.CurCol RMB 1 | |
17 V.CurChr RMB 1 character under the cursor | |
18 V.KySns RMB 1 key sense flags | |
2625
d1ea3dc90082
More progress... now booting with DriveWire
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2624
diff
changeset
|
19 V.EscCh1 RMB 2 escape vector handler |
d1ea3dc90082
More progress... now booting with DriveWire
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2624
diff
changeset
|
20 V.EscVect RMB 2 escape vector handler |
2624 | 21 V.IBufH RMB 1 input buffer head |
22 V.IBufT RMB 1 input buffer tail | |
23 V.InBuf RMB KBufSz input buffer | |
24 RMB 250-. | |
25 V.Last EQU . | |
26 | |
27 ENDC |