]> git.sur5r.net Git - cc65/blob - include/_antic.h
Relocate register values outside structs, + more
[cc65] / include / _antic.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                _antic.h                                   */
4 /*                                                                           */
5 /*                  Internal include file, do not use directly               */
6 /*                                                                           */
7 /*                                                                           */
8 /* "ANTIC, Alphanumeric Television Interface Controller, is responsible for  */
9 /* the generation of playfield graphics which is delivered as a datastream   */
10 /* to the related CTIA/GTIA chip. The CTIA/GTIA provides the coloring of the */
11 /* playfield graphics, and is responsible for adding overlaid sprite         */
12 /* (referred to as "Player/Missile graphics" by Atari).  Atari advertised it */
13 /* as a true microprocessor, in that it has an instruction set to run        */
14 /* programs (called display lists) to process data.  ANTIC has no capacity   */
15 /* for writing back computed values to memory, it merely reads data from     */
16 /* memory and processes it for output to the screen, therefore it is not     */
17 /* Turing complete." - Wikipedia article on "ANTIC" (with edits)             */
18 /*                                                                           */
19 /* (C) 2000 Freddy Offenga <taf_offenga@yahoo.com>                           */
20 /* 24-Jan-2011: Christian Krueger: Added defines for Antic instruction set   */
21 /* 2019-01-14: Bill Kendrick <nbs@sonic.net>: More defines for registers     */
22 /*                                                                           */
23 /*                                                                           */
24 /* This software is provided 'as-is', without any expressed or implied       */
25 /* warranty.  In no event will the authors be held liable for any damages    */
26 /* arising from the use of this software.                                    */
27 /*                                                                           */
28 /* Permission is granted to anyone to use this software for any purpose,     */
29 /* including commercial applications, and to alter it and redistribute it    */
30 /* freely, subject to the following restrictions:                            */
31 /*                                                                           */
32 /* 1. The origin of this software must not be misrepresented; you must not   */
33 /*    claim that you wrote the original software. If you use this software   */
34 /*    in a product, an acknowledgment in the product documentation would be  */
35 /*    appreciated but is not required.                                       */
36 /* 2. Altered source versions must be plainly marked as such, and must not   */
37 /*    be misrepresented as being the original software.                      */
38 /* 3. This notice may not be removed or altered from any source              */
39 /*    distribution.                                                          */
40 /*                                                                           */
41 /*****************************************************************************/
42
43
44 #ifndef __ANTIC_H
45 #define __ANTIC_H
46
47 /* Define a structure with the ANTIC coprocessor's register offsets */
48 struct __antic {
49     unsigned char   dmactl; /* (W) direct memory access control */
50     unsigned char   chactl; /* (W) character mode control */
51     unsigned char   dlistl; /* display list pointer low-byte */
52     unsigned char   dlisth; /* display list pointer high-byte */
53     unsigned char   hscrol; /* (W) horizontal scroll enable */
54     unsigned char   vscrol; /* (W) vertical scroll enable */
55     unsigned char   unuse0; /* unused */
56     unsigned char   pmbase; /* (W) msb of p/m base address (for when DMACTL has player and/or missile DMA enabled) */
57     unsigned char   unuse1; /* unused */
58     unsigned char   chbase; /* (W) msb of character set base address */
59     unsigned char   wsync;  /* (W) wait for horizontal synchronization */
60     unsigned char   vcount; /* (R) vertical line counter */
61     unsigned char   penh;   /* (R) light pen horizontal position */
62     unsigned char   penv;   /* (R) light pen vertical position */
63     unsigned char   nmien;  /* (W) non-maskable interrupt enable */
64     unsigned char   nmires;
65     /* (W) ("NMIRES") nmi reset -- clears the interrupt request register; resets all of the NMI status together
66     ** (R) ("NMIST") nmi status -- holds cause for the NMI interrupt
67     */
68 };
69
70
71 /* DMACTL register options */
72 /* Initialized to 0x22: DMA fetch, normal playfield, no PMG DMA, double-line PMGs */
73
74 /* Playfield modes: */
75 #define DMACTL_PLAYFIELD_NONE     0x00
76 #define DMACTL_PLAYFIELD_NARROW   0x01 /* e.g., 32 bytes per scanline with thick borders */
77 #define DMACTL_PLAYFIELD_NORMAL   0x02 /* e.g., 40 bytes per scanline with normal borders */
78 #define DMACTL_PLAYFIELD_WIDE     0x03 /* e.g., 48 bytes per scanline with no borders (overscan) */
79
80 /* Other options: */
81
82 /* If not set, GTIA's GRAFP0 thru GRAFP3, and/or GRAFM registers are used for
83 ** player & missile shapes, respectively.  (Modify the registers during the horizontal blank
84 ** (Display List Interrupt), a la "racing the beam" on an Atari VCS/2600, )
85 ** if set, ANTIC's PMBASE will be used to fetch shapes from memory via DMA.
86 */
87 #define DMACTL_DMA_MISSILES    0x04
88 #define DMACTL_DMA_PLAYERS     0x08
89
90 /* Unless set, PMGs (as fetched via DMA) will be double-scanline resolution */
91 #define DMACTL_PMG_SINGLELINE  0x10
92
93 /* Unless set, ANTIC operation is disabled, since it cannot fetch
94 ** Display List instructions
95 */
96 #define DMACTL_DMA_FETCH       0x20
97
98
99 /* CHACTL register options */
100 /* Initialized to 2 (CHACTL_CHAR_NORMAL | CHACTL_INV_PRESENT) */
101
102 /* Inverted (upside-down) characters */
103 #define CHACTL_CHAR_NORMAL    0x00
104 #define CHACTL_CHAR_INVERTED  0x04
105
106 /* Inverse (reverse-video) characters */
107 #define CHACTL_INV_TRANS      0x00 /* chars with high-bit shown */
108 #define CHACTL_INV_OPAQUE     0x01 /* chars with high-bit appear as space */
109 #define CHACTL_INV_PRESENT    0x02 /* chars with high-bit are reverse-video */
110
111
112 /* Register bits for NMIEN (enabling interrupts)
113 ** and NMIST (determining the cause for the NMI interrupt)
114 */
115
116 #define NMIEN_DLI   0x80
117 /* Display List Interrupts
118 ** Called on a modeline when "DL_DLI" bit is set the ANTIC instruction,
119 ** and jumps through VDSLST vector.
120 */
121
122 #define NMIEN_VBI   0x40 
123 /* Vertical Blank Interrupt
124 ** Called during every vertical blank; see SYSVBV, VVBLKI, CRITIC, and VVBLKD,
125 ** as well as the SETVBV routine.
126 */
127
128 #define NMIEN_RESET 0x20
129 /* [Reset] key pressed */
130
131
132 /* ANTIC instruction set */
133
134 /* Absolute instructions (non mode lines) */
135 #define DL_JMP  ((unsigned char) 1)
136 #define DL_JVB  ((unsigned char) 65)
137
138 #define DL_BLK1 ((unsigned char) 0)   /* 1 blank scanline */
139 #define DL_BLK2 ((unsigned char) 16)  /* 2 blank scanlines */
140 #define DL_BLK3 ((unsigned char) 32)  /* ...etc. */
141 #define DL_BLK4 ((unsigned char) 48)
142 #define DL_BLK5 ((unsigned char) 64)
143 #define DL_BLK6 ((unsigned char) 80)
144 #define DL_BLK7 ((unsigned char) 96)
145 #define DL_BLK8 ((unsigned char) 112)
146
147 /* Absolute instructions (mode lines) */
148 /* Note: Actual width varies (e.g., 40 vs 32 vs 48) depending on normal vs narrow vs wide (overscan) playfield setting; see DMACTL */
149
150 /* Character modes (text, tile graphics, etc.) */
151 #define DL_CHR40x8x1    ((unsigned char) 2)      /* monochrome, 40 character & 8 scanlines per mode line (aka Atari BASIC GRAPHICS 0 via OS's CIO routines) */
152 #define DL_CHR40x10x1   ((unsigned char) 3)      /* monochrome, 40 character & 10 scanlines per mode line (like GR. 0, with descenders) */
153 #define DL_CHR40x8x4    ((unsigned char) 4)      /* colour, 40 character & 8 scanlines per mode line (GR. 12) */
154 #define DL_CHR40x16x4   ((unsigned char) 5)      /* colour, 40 character & 16 scanlines per mode line (GR. 13) */
155 #define DL_CHR20x8x2    ((unsigned char) 6)      /* colour (duochrome per character), 20 character & 8 scanlines per mode line (GR. 1) */
156 #define DL_CHR20x16x2   ((unsigned char) 7)      /* colour (duochrome per character), 20 character & 16 scanlines per mode line (GR. 2) */
157
158 /* Bitmap modes */
159 #define DL_MAP40x8x4    ((unsigned char) 8)      /* colour, 40 pixel & 8 scanlines per mode line (GR. 3) */
160 #define DL_MAP80x4x2    ((unsigned char) 9)      /* 'duochrome', 80 pixel & 4 scanlines per mode line (GR.4) */
161 #define DL_MAP80x4x4    ((unsigned char) 10)     /* colour, 80 pixel & 4 scanlines per mode line (GR.5) */
162 #define DL_MAP160x2x2   ((unsigned char) 11)     /* 'duochrome', 160 pixel & 2 scanlines per mode line (GR.6) */
163 #define DL_MAP160x1x2   ((unsigned char) 12)     /* 'duochrome', 160 pixel & 1 scanline per mode line (GR.14) */
164 #define DL_MAP160x2x4   ((unsigned char) 13)     /* 4 colours, 160 pixel & 2 scanlines per mode line (GR.7) */
165 #define DL_MAP160x1x4   ((unsigned char) 14)     /* 4 colours, 160 pixel & 1 scanline per mode line (GR.15) */
166 #define DL_MAP320x1x1   ((unsigned char) 15)     /* monochrome, 320 pixel & 1 scanline per mode line (GR.8) */
167
168 /* Equivalents, for people familiar with Atari 8-bit OS */
169 #define DL_GRAPHICS0    DL_CHR40x8x1
170 #define DL_GRAPHICS1    DL_CHR20x8x2
171 #define DL_GRAPHICS2    DL_CHR20x16x2
172 #define DL_GRAPHICS3    DL_MAP40x8x4
173 #define DL_GRAPHICS4    DL_MAP80x4x2
174 #define DL_GRAPHICS5    DL_MAP80x4x4
175 #define DL_GRAPHICS6    DL_MAP160x2x2
176 #define DL_GRAPHICS7    DL_MAP160x2x4
177 #define DL_GRAPHICS8    DL_MAP320x1x1
178 #define DL_GRAPHICS9    DL_MAP320x1x1  /* N.B.: GRAPHICS 9, 10, and 11 also involve GTIA's PRIOR register */
179 #define DL_GRAPHICS10   DL_MAP320x1x1
180 #define DL_GRAPHICS11   DL_MAP320x1x1
181 #define DL_GRAPHICS12   DL_CHR40x8x4   /* N.B.: Atari 400/800 OS didn't have GRAPHICS 12 or 13 */
182 #define DL_GRAPHICS13   DL_CHR40x16x4
183 #define DL_GRAPHICS14   DL_MAP160x1x2
184 #define DL_GRAPHICS15   DL_MAP160x1x4
185
186 /* Atari 400/800 OS didn't have GRAPHICS 14 or 15, so they were known by "6+" and "7+" */
187 #define DL_GRAPHICS6PLUS DL_GRAPHICS14
188 #define DL_GRAPHICS7PLUS DL_GRAPHICS15
189
190 /* Neither Atari 400/800 nor XL OS supported 10-scanline (descenders) text mode via CIO */
191 #define DL_GRAPHICS0_DESCENDERS  DL_CHR40x10x1
192
193 /* Modifiers to mode lines */
194 #define DL_HSCROL(x)    ((unsigned char)((x) | 16)) /* enable smooth horizontal scrolling on this line; see HSCROL */
195 #define DL_VSCROL(x)    ((unsigned char)((x) | 32)) /* enable smooth vertical scrolling on this line; see VSCROL */
196 #define DL_LMS(x)       ((unsigned char)((x) | 64)) /* Load Memory Scan (next two bytes must be the LSB/MSB of the data to load) */
197
198 /* General modifier */
199 #define DL_DLI(x)       ((unsigned char)((x) | 128)) /* enable Display List Interrupt on this mode line; requires NMIEN be set to enable DLIs */
200
201
202 /* End of _antic.h */
203 #endif /* #ifndef __ANTIC_H */