]> git.sur5r.net Git - cc65/blob - include/atari.h
Use 'return0' for default 'doesclrscrafterexit()' implementation in libsrc/common.
[cc65] / include / atari.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 atari.h                                   */
4 /*                                                                           */
5 /*                      Atari system specific definitions                    */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2006 Mark Keates <markk@dendrite.co.uk>                          */
10 /*               Freddy Offenga <taf_offenga@yahoo.com>                      */
11 /*               Christian Groessler <chris@groessler.org>                   */
12 /*                                                                           */
13 /*                                                                           */
14 /* This software is provided 'as-is', without any expressed or implied       */
15 /* warranty.  In no event will the authors be held liable for any damages    */
16 /* arising from the use of this software.                                    */
17 /*                                                                           */
18 /* Permission is granted to anyone to use this software for any purpose,     */
19 /* including commercial applications, and to alter it and redistribute it    */
20 /* freely, subject to the following restrictions:                            */
21 /*                                                                           */
22 /* 1. The origin of this software must not be misrepresented; you must not   */
23 /*    claim that you wrote the original software. If you use this software   */
24 /*    in a product, an acknowledgment in the product documentation would be  */
25 /*    appreciated but is not required.                                       */
26 /* 2. Altered source versions must be plainly marked as such, and must not   */
27 /*    be misrepresented as being the original software.                      */
28 /* 3. This notice may not be removed or altered from any source              */
29 /*    distribution.                                                          */
30 /*                                                                           */
31 /*****************************************************************************/
32
33
34
35 #ifndef _ATARI_H
36 #define _ATARI_H
37
38
39
40 /* Check for errors */
41 #if !defined(__ATARI__)
42 #  error This module may only be used when compiling for the Atari!
43 #endif
44
45
46
47 /* Character codes */
48 #define CH_DELCHR       0xFE   /* delete char under the cursor */
49 #define CH_ENTER        0x9B
50 #define CH_ESC          0x1B
51 #define CH_CURS_UP      28
52 #define CH_CURS_DOWN    29
53 #define CH_CURS_LEFT    30
54 #define CH_CURS_RIGHT   31
55
56 #define CH_TAB          0x7F   /* tabulator */
57 #define CH_EOL          0x9B   /* end-of-line marker */
58 #define CH_CLR          0x7D   /* clear screen */
59 #define CH_BEL          0xFD   /* bell */
60 #define CH_DEL          0x7E   /* back space (delete char to the left) */
61 #define CH_RUBOUT       0x7E   /* back space (old, deprecated) */
62 #define CH_DELLINE      0x9C   /* delete line */
63 #define CH_INSLINE      0x9D   /* insert line */
64
65 /* These are defined to be Atari + NumberKey */
66 #define CH_F1           177
67 #define CH_F2           178
68 #define CH_F3           179
69 #define CH_F4           180
70 #define CH_F5           181
71 #define CH_F6           182
72 #define CH_F7           183
73 #define CH_F8           184
74 #define CH_F9           185
75 #define CH_F10          176
76
77 #define CH_ULCORNER     0x11
78 #define CH_URCORNER     0x05
79 #define CH_LLCORNER     0x1A
80 #define CH_LRCORNER     0x03
81 #define CH_TTEE         0x17
82 #define CH_BTEE         0x18
83 #define CH_LTEE         0x01
84 #define CH_RTEE         0x04
85 #define CH_CROSS        0x13
86 #define CH_HLINE        0x12
87 #define CH_VLINE        0x7C
88
89 /* color defines */
90
91 /* make GTIA color value */
92 #define _gtia_mkcolor(hue,lum) (((hue) << 4) | ((lum) << 1))
93
94 /* luminance values go from 0 (black) to 7 (white) */
95
96 /* hue values */
97 #define HUE_GREY        0
98 #define HUE_GOLD        1
99 #define HUE_GOLDORANGE  2
100 #define HUE_REDORANGE   3
101 #define HUE_ORANGE      4
102 #define HUE_MAGENTA     5
103 #define HUE_PURPLE      6
104 #define HUE_BLUE        7
105 #define HUE_BLUE2       8
106 #define HUE_CYAN        9
107 #define HUE_BLUEGREEN   10
108 #define HUE_BLUEGREEN2  11
109 #define HUE_GREEN       12
110 #define HUE_YELLOWGREEN 13
111 #define HUE_YELLOW      14
112 #define HUE_YELLOWRED   15
113
114 /* Color defines, similar to c64 colors (untested) */
115 /* Note that the conio color implementation is monochrome (bgcolor and textcolor are only placeholders) */
116 /* Use the defines with the setcolor() or _atari_xxxcolor() functions */
117 #define COLOR_BLACK             _gtia_mkcolor(HUE_GREY,0)
118 #define COLOR_WHITE             _gtia_mkcolor(HUE_GREY,7)
119 #define COLOR_RED               _gtia_mkcolor(HUE_REDORANGE,1)
120 #define COLOR_CYAN              _gtia_mkcolor(HUE_CYAN,3)
121 #define COLOR_VIOLET            _gtia_mkcolor(HUE_PURPLE,4)
122 #define COLOR_GREEN             _gtia_mkcolor(HUE_GREEN,2)
123 #define COLOR_BLUE              _gtia_mkcolor(HUE_BLUE,2)
124 #define COLOR_YELLOW            _gtia_mkcolor(HUE_YELLOW,7)
125 #define COLOR_ORANGE            _gtia_mkcolor(HUE_ORANGE,5)
126 #define COLOR_BROWN             _gtia_mkcolor(HUE_YELLOW,2)
127 #define COLOR_LIGHTRED          _gtia_mkcolor(HUE_REDORANGE,6)
128 #define COLOR_GRAY1             _gtia_mkcolor(HUE_GREY,2)
129 #define COLOR_GRAY2             _gtia_mkcolor(HUE_GREY,3)
130 #define COLOR_LIGHTGREEN        _gtia_mkcolor(HUE_GREEN,6)
131 #define COLOR_LIGHTBLUE         _gtia_mkcolor(HUE_BLUE,6)
132 #define COLOR_GRAY3             _gtia_mkcolor(HUE_GREY,5)
133
134 /* TGI color defines */
135 #define TGI_COLOR_BLACK         COLOR_BLACK
136 #define TGI_COLOR_WHITE         COLOR_WHITE
137 #define TGI_COLOR_RED           COLOR_RED
138 #define TGI_COLOR_CYAN          COLOR_CYAN
139 #define TGI_COLOR_VIOLET        COLOR_VIOLET
140 #define TGI_COLOR_GREEN         COLOR_GREEN
141 #define TGI_COLOR_BLUE          COLOR_BLUE
142 #define TGI_COLOR_YELLOW        COLOR_YELLOW
143 #define TGI_COLOR_ORANGE        COLOR_ORANGE
144 #define TGI_COLOR_BROWN         COLOR_BROWN
145 #define TGI_COLOR_LIGHTRED      COLOR_LIGHTRED
146 #define TGI_COLOR_GRAY1         COLOR_GRAY1
147 #define TGI_COLOR_GRAY2         COLOR_GRAY2
148 #define TGI_COLOR_LIGHTGREEN    COLOR_LIGHTGREEN
149 #define TGI_COLOR_LIGHTBLUE     COLOR_LIGHTBLUE
150 #define TGI_COLOR_GRAY3         COLOR_GRAY3
151
152 /* color register functions */
153 extern void __fastcall__ _setcolor     (unsigned char color_reg, unsigned char hue, unsigned char luminace);
154 extern void __fastcall__ _setcolor_low (unsigned char color_reg, unsigned char color_value);
155 extern unsigned char __fastcall__ _getcolor (unsigned char color_reg);
156
157 /* other screen functions */
158 extern int  __fastcall__ _graphics (unsigned char mode); /* mode value same as in BASIC */
159 extern void __fastcall__ _scroll (signed char numlines);
160                                           /* numlines > 0  scrolls up */
161                                           /* numlines < 0  scrolls down */
162
163 /* misc. functions */
164 extern unsigned char get_ostype(void);       /* get ROM version */
165 extern unsigned char get_tv(void);           /* get TV system */
166 extern void _save_vecs(void);                /* save system vectors */
167 extern void _rest_vecs(void);                /* restore system vectors */
168 extern char *_getdefdev(void);               /* get default floppy device */
169 extern unsigned char _is_cmdline_dos(void);  /* does DOS support command lines */
170
171 /* global variables */
172 extern unsigned char _dos_type;         /* the DOS flavour */
173 #ifndef __ATARIXL__
174 extern void atr130_emd[];
175 extern void atrstd_joy[];               /* referred to by joy_static_stddrv[] */
176 extern void atrmj8_joy[];
177 extern void atrjoy_mou[];
178 extern void atrst_mou[];                /* referred to by mouse_static_stddrv[] */
179 extern void atrami_mou[];
180 extern void atrtrk_mou[];
181 extern void atrtt_mou[];
182 extern void atrrdev_ser[];
183 extern void atr3_tgi[];
184 extern void atr4_tgi[];
185 extern void atr5_tgi[];
186 extern void atr6_tgi[];
187 extern void atr7_tgi[];
188 extern void atr8_tgi[];                 /* referred to by tgi_static_stddrv[] */
189 extern void atr8p2_tgi[];
190 extern void atr9_tgi[];
191 extern void atr9p2_tgi[];
192 extern void atr10_tgi[];
193 extern void atr10p2_tgi[];
194 extern void atr11_tgi[];
195 extern void atr14_tgi[];
196 extern void atr15_tgi[];
197 extern void atr15p2_tgi[];
198 #else
199 extern void atrx130_emd[];
200 extern void atrxstd_joy[];              /* referred to by joy_static_stddrv[] */
201 extern void atrxmj8_joy[];
202 extern void atrxjoy_mou[];
203 extern void atrxst_mou[];               /* referred to by mouse_static_stddrv[] */
204 extern void atrxami_mou[];
205 extern void atrxtrk_mou[];
206 extern void atrxtt_mou[];
207 extern void atrxrdev_ser[];
208 extern void atrx3_tgi[];
209 extern void atrx4_tgi[];
210 extern void atrx5_tgi[];
211 extern void atrx6_tgi[];
212 extern void atrx7_tgi[];
213 extern void atrx8_tgi[];                /* referred to by tgi_static_stddrv[] */
214 extern void atrx8p2_tgi[];
215 extern void atrx9_tgi[];
216 extern void atrx9p2_tgi[];
217 extern void atrx10_tgi[];
218 extern void atrx10p2_tgi[];
219 extern void atrx11_tgi[];
220 extern void atrx14_tgi[];
221 extern void atrx15_tgi[];
222 extern void atrx15p2_tgi[];
223 #endif
224
225 /* provide old names for backwards compatibility */
226 #ifdef ATARI_COMPAT_PRE_2_11
227 #define setcolor     _setcolor
228 #define setcolor_low _setcolor_low
229 #define getcolor     _getcolor
230 #define graphics     _graphics
231 #define scroll       _scroll
232 #define save_vecs    _save_vecs
233 #define rest_vecs    _rest_vecs
234 #define getdefdev    _getdefdev
235 #endif  /* #ifdef ATARI_COMPAT_PRE_2_11 */
236
237 /* get_ostype return value defines (for explanation, see ostype.s) */
238 /* masks */
239 #define AT_OS_TYPE_MAIN  7
240 #define AT_OS_TYPE_MINOR (7 << 3)
241 /* AT_OS_TYPE_MAIN values */
242 #define AT_OS_UNKNOWN  0
243 #define AT_OS_400800   1
244 #define AT_OS_1200XL   2
245 #define AT_OS_XLXE     3
246 /* AS_OS_TYPE_MINOR values */
247 /* for 400/800 remember this are the ROM versions */
248 /* to check whether the hw is PAL or NTSC, use get_tv() */
249 #define AT_OS_400800PAL_A  1
250 #define AT_OS_400800PAL_B  2
251 #define AT_OS_400800NTSC_A 1
252 #define AT_OS_400800NTSC_B 2
253 #define AT_OS_1200_10  1
254 #define AT_OS_1200_11  2
255 #define AT_OS_XLXE_1   1
256 #define AT_OS_XLXE_2   2
257 #define AT_OS_XLXE_3   3
258 #define AT_OS_XLXE_4   4
259
260 /* get_tv return values */
261 #define AT_NTSC     0
262 #define AT_PAL      1
263
264 /* valid _dos_type values */
265 #define SPARTADOS   0
266 #define OSADOS      1
267 #define XDOS        2
268 #define ATARIDOS    3
269 #define MYDOS       4
270 #define NODOS       255
271
272 /* Define hardware */
273 #include <_gtia.h>
274 #define GTIA_READ  (*(struct __gtia_read*)0xD000)
275 #define GTIA_WRITE (*(struct __gtia_write*)0xD000)
276
277 #include <_pbi.h>
278
279 #include <_pokey.h>
280 #define POKEY_READ  (*(struct __pokey_read*)0xD200)
281 #define POKEY_WRITE (*(struct __pokey_write*)0xD200)
282
283 #include <_pia.h>
284 #define PIA (*(struct __pia*)0xD300)
285
286 #include <_antic.h>
287 #define ANTIC (*(struct __antic*)0xD400)
288
289 /* device control block */
290 struct __dcb {
291     unsigned char device;     /* device id */
292     unsigned char unit;       /* unit number */
293     unsigned char command;    /* command */
294     unsigned char status;     /* command type / status return */
295     void          *buffer;    /* pointer to buffer */
296     unsigned char timeout;    /* device timeout in seconds */
297     unsigned char unused;
298     unsigned int  xfersize;   /* # of bytes to transfer */
299     unsigned char aux1;       /* 1st command auxiliary byte */
300     unsigned char aux2;       /* 2nd command auxiliary byte */
301 };
302 #define DCB (*(struct __dcb *)0x300)
303
304 /* I/O control block */
305 struct __iocb {
306     unsigned char handler;    /* handler index number (0xff free) */
307     unsigned char drive;      /* device number (drive) */
308     unsigned char command;    /* command */
309     unsigned char status;     /* status of last operation */
310     void          *buffer;    /* pointer to buffer */
311     void          *put_byte;  /* pointer to device's PUT BYTE routine */
312     unsigned int  buflen;     /* length of buffer */
313     unsigned char aux1;       /* 1st auxiliary byte */
314     unsigned char aux2;       /* 2nd auxiliary byte */
315     unsigned char aux3;       /* 3rd auxiliary byte */
316     unsigned char aux4;       /* 4th auxiliary byte */
317     unsigned char aux5;       /* 5th auxiliary byte */
318     unsigned char spare;      /* spare byte */
319 };
320 #define ZIOCB (*(struct __iocb *)0x20)  /* zero page IOCB */
321 #define IOCB (*(struct __iocb *)0x340)  /* system IOCB buffers */
322
323 /* IOCB Command Codes */
324 #define IOCB_OPEN        0x03  /* open */
325 #define IOCB_GETREC      0x05  /* get record */
326 #define IOCB_GETCHR      0x07  /* get character(s) */
327 #define IOCB_PUTREC      0x09  /* put record */
328 #define IOCB_PUTCHR      0x0B  /* put character(s) */
329 #define IOCB_CLOSE       0x0C  /* close */
330 #define IOCB_STATIS      0x0D  /* status */
331 #define IOCB_SPECIL      0x0E  /* special */
332 #define IOCB_DRAWLN      0x11  /* draw line */
333 #define IOCB_FILLIN      0x12  /* draw line with right fill */
334 #define IOCB_RENAME      0x20  /* rename disk file */
335 #define IOCB_DELETE      0x21  /* delete disk file */
336 #define IOCB_LOCKFL      0x23  /* lock file (set to read-only) */
337 #define IOCB_UNLOCK      0x24  /* unlock file */
338 #define IOCB_POINT       0x25  /* point sector */
339 #define IOCB_NOTE        0x26  /* note sector */
340 #define IOCB_GETFL       0x27  /* get file length */
341 #define IOCB_CHDIR_MYDOS 0x29  /* change directory (MyDOS) */
342 #define IOCB_MKDIR       0x2A  /* make directory (MyDOS/SpartaDOS) */
343 #define IOCB_RMDIR       0x2B  /* remove directory (SpartaDOS) */
344 #define IOCB_CHDIR_SPDOS 0x2C  /* change directory (SpartaDOS) */
345 #define IOCB_GETCWD      0x30  /* get current directory (MyDOS/SpartaDOS) */
346 #define IOCB_FORMAT      0xFE  /* format */
347
348 /* End of atari.h */
349 #endif /* #ifndef _ATARI_H */