]> git.sur5r.net Git - cc65/blob - include/c128.h
Added standard copyright headers
[cc65] / include / c128.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                  c128.h                                   */
4 /*                                                                           */
5 /*                     C128 system specific definitions                      */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-2000 Ullrich von Bassewitz                                       */
10 /*               Wacholderweg 14                                             */
11 /*               D-70597 Stuttgart                                           */
12 /* EMail:        uz@musoftware.de                                            */
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 /*
37  * c128.h
38  *
39  * Ullrich von Bassewitz, 12.08.1998
40  */
41
42
43
44 #ifndef _C128_H
45 #define _C128_H
46
47
48
49 /* Additional key defines */
50 #define CH_F1                   133
51 #define CH_F2                   137
52 #define CH_F3                   134
53 #define CH_F4                   138
54 #define CH_F5                   135
55 #define CH_F6                   139
56 #define CH_F7                   136
57 #define CH_F8                   140
58
59
60
61 /* Color defines */
62 #define COLOR_BLACK             0x00
63 #define COLOR_WHITE             0x01
64 #define COLOR_RED               0x02
65 #define COLOR_CYAN              0x03
66 #define COLOR_VIOLET            0x04
67 #define COLOR_GREEN             0x05
68 #define COLOR_BLUE              0x06
69 #define COLOR_YELLOW            0x07
70 #define COLOR_ORANGE            0x08
71 #define COLOR_BROWN             0x09
72 #define COLOR_LIGHTRED          0x0A
73 #define COLOR_GRAY1             0x0B
74 #define COLOR_GRAY2             0x0C
75 #define COLOR_LIGHTGREEN        0x0D
76 #define COLOR_LIGHTBLUE         0x0E
77 #define COLOR_GRAY3             0x0F
78
79
80
81 /* Define hardware */
82 #include <_vic.h>
83 #define VIC     (*(struct __vic*)0xD000)
84
85 #include <_sid.h>
86 #define SID     (*(struct __sid*)0xD400)
87
88 #include <_6526.h>
89 #define CIA1    (*(struct __6526*)0xDC00)
90 #define CIA2    (*(struct __6526*)0xDD00)
91
92
93
94 /* Define special memory areas */
95 #define COLOR_RAM       ((unsigned char*)0xD800)
96
97
98
99 /* End of c128.h */
100 #endif
101
102
103