1 /*****************************************************************************/
5 /* C128 system specific definitions */
9 /* (C) 1998-2001 Ullrich von Bassewitz */
11 /* D-70597 Stuttgart */
12 /* EMail: uz@musoftware.de */
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. */
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: */
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 */
32 /*****************************************************************************/
41 /* Check for errors */
42 #if !defined(__C128__)
43 # error This module may only be used when compiling for the C128!
48 /* Additional key defines */
61 #define COLOR_BLACK 0x00
62 #define COLOR_WHITE 0x01
63 #define COLOR_RED 0x02
64 #define COLOR_CYAN 0x03
65 #define COLOR_VIOLET 0x04
66 #define COLOR_GREEN 0x05
67 #define COLOR_BLUE 0x06
68 #define COLOR_YELLOW 0x07
69 #define COLOR_ORANGE 0x08
70 #define COLOR_BROWN 0x09
71 #define COLOR_LIGHTRED 0x0A
72 #define COLOR_GRAY1 0x0B
73 #define COLOR_GRAY2 0x0C
74 #define COLOR_LIGHTGREEN 0x0D
75 #define COLOR_LIGHTBLUE 0x0E
76 #define COLOR_GRAY3 0x0F
82 #define VIC (*(struct __vic*)0xD000)
85 #define SID (*(struct __sid*)0xD400)
88 #define CIA1 (*(struct __6526*)0xDC00)
89 #define CIA2 (*(struct __6526*)0xDD00)
93 /* Define special memory areas */
94 #define COLOR_RAM ((unsigned char*)0xD800)