]> git.sur5r.net Git - cc65/blob - include/c64.h
Added TGI colors (simply based on the conio colors).
[cc65] / include / c64.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                   c64.h                                   */
4 /*                                                                           */
5 /*                      C64 system specific definitions                      */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-2010 Ullrich von Bassewitz                                       */
10 /*               Roemerstrasse 52                                            */
11 /*               D-70794 Filderstadt                                         */
12 /* EMail:        uz@cc65.org                                                 */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #ifndef _C64_H
37 #define _C64_H
38
39
40
41 /* Check for errors */
42 #if !defined(__C64__)
43 #  error This module may only be used when compiling for the C64!
44 #endif
45
46
47
48 /*****************************************************************************/
49 /*                                   Data                                    */
50 /*****************************************************************************/
51
52
53
54 /* Additional key defines */
55 #define CH_F1                   133
56 #define CH_F2                   137
57 #define CH_F3                   134
58 #define CH_F4                   138
59 #define CH_F5                   135
60 #define CH_F6                   139
61 #define CH_F7                   136
62 #define CH_F8                   140
63
64 /* Color defines */
65 #define COLOR_BLACK             0x00
66 #define COLOR_WHITE             0x01
67 #define COLOR_RED               0x02
68 #define COLOR_CYAN              0x03
69 #define COLOR_VIOLET            0x04
70 #define COLOR_PURPLE            COLOR_VIOLET
71 #define COLOR_GREEN             0x05
72 #define COLOR_BLUE              0x06
73 #define COLOR_YELLOW            0x07
74 #define COLOR_ORANGE            0x08
75 #define COLOR_BROWN             0x09
76 #define COLOR_LIGHTRED          0x0A
77 #define COLOR_GRAY1             0x0B
78 #define COLOR_GRAY2             0x0C
79 #define COLOR_LIGHTGREEN        0x0D
80 #define COLOR_LIGHTBLUE         0x0E
81 #define COLOR_GRAY3             0x0F
82
83 /* TGI color defines */
84 #define TGI_COLOR_BLACK         COLOR_BLACK
85 #define TGI_COLOR_WHITE         COLOR_WHITE
86 #define TGI_COLOR_RED           COLOR_RED
87 #define TGI_COLOR_CYAN          COLOR_CYAN
88 #define TGI_COLOR_VIOLET        COLOR_VIOLET
89 #define TGI_COLOR_PURPLE        COLOR_PURPLE
90 #define TGI_COLOR_GREEN         COLOR_GREEN
91 #define TGI_COLOR_BLUE          COLOR_BLUE
92 #define TGI_COLOR_YELLOW        COLOR_YELLOW
93 #define TGI_COLOR_ORANGE        COLOR_ORANGE
94 #define TGI_COLOR_BROWN         COLOR_BROWN
95 #define TGI_COLOR_LIGHTRED      COLOR_LIGHTRED
96 #define TGI_COLOR_GRAY1         COLOR_GRAY1
97 #define TGI_COLOR_GRAY2         COLOR_GRAY2
98 #define TGI_COLOR_LIGHTGREEN    COLOR_LIGHTGREEN
99 #define TGI_COLOR_LIGHTBLUE     COLOR_LIGHTBLUE
100 #define TGI_COLOR_GRAY3         COLOR_GRAY3
101
102 /* Define hardware */
103 #include <_vic2.h>
104 #define VIC     (*(struct __vic2*)0xD000)
105
106 #include <_sid.h>
107 #define SID     (*(struct __sid*)0xD400)
108
109 #include <_6526.h>
110 #define CIA1    (*(struct __6526*)0xDC00)
111 #define CIA2    (*(struct __6526*)0xDD00)
112
113 /* Define special memory areas */
114 #define COLOR_RAM       ((unsigned char*)0xD800)
115
116 /* Return codes for get_ostype */
117 #define C64_OS_US       0xAA            /* US version */
118 #define C64_OS_PET64    0x64            /* PET 64 */
119 #define C64_OS_SX64     0x43            /* SX-64 */
120 #define C64_EU_NEW      0x03
121 #define C64_EU_OLD      0x00
122 #define C64_DTV         0xFF            /* C64 DTV */
123
124                 
125
126 /*****************************************************************************/
127 /*                                   Code                                    */
128 /*****************************************************************************/
129
130
131
132 unsigned char get_ostype (void);
133 /* Get the ROM version. Returns one of the C64_OS_xxx codes. */
134
135
136
137 /* End of c64.h */
138 #endif
139
140
141