1 | /*
|
---|
2 | *
|
---|
3 | * BIOS Memory
|
---|
4 | *
|
---|
5 | */
|
---|
6 | #define BIOSMEM_SEG 0x40
|
---|
7 |
|
---|
8 | #define BIOSMEM_INITIAL_MODE 0x10
|
---|
9 | #define BIOSMEM_CURRENT_MODE 0x49
|
---|
10 | #define BIOSMEM_NB_COLS 0x4A
|
---|
11 | #define BIOSMEM_PAGE_SIZE 0x4C
|
---|
12 | #define BIOSMEM_CURRENT_START 0x4E
|
---|
13 | #define BIOSMEM_CURSOR_POS 0x50
|
---|
14 | #define BIOSMEM_CURSOR_TYPE 0x60
|
---|
15 | #define BIOSMEM_CURRENT_PAGE 0x62
|
---|
16 | #define BIOSMEM_CRTC_ADDRESS 0x63
|
---|
17 | #define BIOSMEM_CURRENT_MSR 0x65
|
---|
18 | #define BIOSMEM_CURRENT_PAL 0x66
|
---|
19 | #define BIOSMEM_NB_ROWS 0x84
|
---|
20 | #define BIOSMEM_CHAR_HEIGHT 0x85
|
---|
21 | #define BIOSMEM_VIDEO_CTL 0x87
|
---|
22 | #define BIOSMEM_SWITCHES 0x88
|
---|
23 | #define BIOSMEM_MODESET_CTL 0x89
|
---|
24 | #define BIOSMEM_DCC_INDEX 0x8A
|
---|
25 | #define BIOSMEM_VS_POINTER 0xA8
|
---|
26 | #define BIOSMEM_VBE_FLAG 0xB9
|
---|
27 | #define BIOSMEM_VBE_MODE 0xBA
|
---|
28 |
|
---|
29 |
|
---|
30 | /*
|
---|
31 | *
|
---|
32 | * VGA registers
|
---|
33 | *
|
---|
34 | */
|
---|
35 | #define VGAREG_ACTL_ADDRESS 0x3c0
|
---|
36 | #define VGAREG_ACTL_WRITE_DATA 0x3c0
|
---|
37 | #define VGAREG_ACTL_READ_DATA 0x3c1
|
---|
38 |
|
---|
39 | #define VGAREG_INPUT_STATUS 0x3c2
|
---|
40 | #define VGAREG_WRITE_MISC_OUTPUT 0x3c2
|
---|
41 | #define VGAREG_VIDEO_ENABLE 0x3c3
|
---|
42 | #define VGAREG_SEQU_ADDRESS 0x3c4
|
---|
43 | #define VGAREG_SEQU_DATA 0x3c5
|
---|
44 |
|
---|
45 | #define VGAREG_PEL_MASK 0x3c6
|
---|
46 | #define VGAREG_DAC_STATE 0x3c7
|
---|
47 | #define VGAREG_DAC_READ_ADDRESS 0x3c7
|
---|
48 | #define VGAREG_DAC_WRITE_ADDRESS 0x3c8
|
---|
49 | #define VGAREG_DAC_DATA 0x3c9
|
---|
50 |
|
---|
51 | #define VGAREG_READ_FEATURE_CTL 0x3ca
|
---|
52 | #define VGAREG_READ_MISC_OUTPUT 0x3cc
|
---|
53 |
|
---|
54 | #define VGAREG_GRDC_ADDRESS 0x3ce
|
---|
55 | #define VGAREG_GRDC_DATA 0x3cf
|
---|
56 |
|
---|
57 | #define VGAREG_MDA_CRTC_ADDRESS 0x3b4
|
---|
58 | #define VGAREG_MDA_CRTC_DATA 0x3b5
|
---|
59 | #define VGAREG_VGA_CRTC_ADDRESS 0x3d4
|
---|
60 | #define VGAREG_VGA_CRTC_DATA 0x3d5
|
---|
61 |
|
---|
62 | #define VGAREG_MDA_WRITE_FEATURE_CTL 0x3ba
|
---|
63 | #define VGAREG_VGA_WRITE_FEATURE_CTL 0x3da
|
---|
64 | #define VGAREG_ACTL_RESET 0x3da
|
---|
65 |
|
---|
66 | #define VGAREG_MDA_MODECTL 0x3b8
|
---|
67 | #define VGAREG_CGA_MODECTL 0x3d8
|
---|
68 | #define VGAREG_CGA_PALETTE 0x3d9
|
---|
69 |
|
---|
70 | /* Video memory */
|
---|
71 | #define VGAMEM_GRAPH 0xA000
|
---|
72 | #define VGAMEM_CTEXT 0xB800
|
---|
73 | #define VGAMEM_MTEXT 0xB000
|
---|
74 |
|
---|
75 | /*
|
---|
76 | *
|
---|
77 | * Tables of default values for each mode
|
---|
78 | *
|
---|
79 | */
|
---|
80 | #define MODE_MAX 0x14
|
---|
81 | #define TEXT 0x00
|
---|
82 | #define GRAPH 0x01
|
---|
83 |
|
---|
84 | #define CTEXT 0x00
|
---|
85 | #define MTEXT 0x01
|
---|
86 | #define CGA 0x02
|
---|
87 | #define PLANAR1 0x03
|
---|
88 | #define PLANAR4 0x04
|
---|
89 | #define LINEAR8 0x05
|
---|
90 |
|
---|
91 | // for SVGA
|
---|
92 | #define LINEAR15 0x10
|
---|
93 | #define LINEAR16 0x11
|
---|
94 | #define LINEAR24 0x12
|
---|
95 | #define LINEAR32 0x13
|
---|
96 |
|
---|
97 | typedef struct
|
---|
98 | {Bit8u svgamode;
|
---|
99 | Bit16u vesamode;
|
---|
100 | Bit8u class; /* TEXT, GRAPH */
|
---|
101 | Bit8u memmodel; /* CTEXT,MTEXT,CGA,PL1,PL2,PL4,P8,P15,P16,P24,P32 */
|
---|
102 | Bit8u nbpages;
|
---|
103 | Bit8u pixbits;
|
---|
104 | Bit16u swidth, sheight;
|
---|
105 | Bit16u twidth, theight;
|
---|
106 | Bit16u cwidth, cheight;
|
---|
107 | Bit16u sstart;
|
---|
108 | Bit16u slength;
|
---|
109 | Bit8u miscreg;
|
---|
110 | Bit8u pelmask;
|
---|
111 | Bit8u crtcmodel;
|
---|
112 | Bit8u actlmodel;
|
---|
113 | Bit8u grdcmodel;
|
---|
114 | Bit8u sequmodel;
|
---|
115 | Bit8u dacmodel; /* 0 1 2 3 */
|
---|
116 | } VGAMODES;
|
---|
117 |
|
---|
118 | static VGAMODES vga_modes[MODE_MAX+1]=
|
---|
119 | {//mode vesa class model pg bits sw sh tw th cw ch sstart slength misc pelm crtc actl gdc sequ dac
|
---|
120 | {0x00, 0xFFFF, TEXT, CTEXT, 8, 4, 360, 400, 40, 25, 9, 16, 0xB800, 0x0800, 0x67, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x02},
|
---|
121 | {0x01, 0xFFFF, TEXT, CTEXT, 8, 4, 360, 400, 40, 25, 9, 16, 0xB800, 0x0800, 0x67, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x02},
|
---|
122 | {0x02, 0xFFFF, TEXT, CTEXT, 4, 4, 720, 400, 80, 25, 9, 16, 0xB800, 0x1000, 0x67, 0xFF, 0x01, 0x00, 0x00, 0x01, 0x02},
|
---|
123 | {0x03, 0xFFFF, TEXT, CTEXT, 4, 4, 720, 400, 80, 25, 9, 16, 0xB800, 0x1000, 0x67, 0xFF, 0x01, 0x00, 0x00, 0x01, 0x02},
|
---|
124 | {0x04, 0xFFFF, GRAPH, CGA, 4, 2, 320, 200, 40, 25, 8, 8, 0xB800, 0x0800, 0x63, 0xFF, 0x02, 0x01, 0x01, 0x02, 0x01},
|
---|
125 | {0x05, 0xFFFF, GRAPH, CGA, 1, 2, 320, 200, 40, 25, 8, 8, 0xB800, 0x0800, 0x63, 0xFF, 0x02, 0x01, 0x01, 0x02, 0x01},
|
---|
126 | {0x06, 0xFFFF, GRAPH, CGA, 1, 1, 640, 200, 80, 25, 8, 8, 0xB800, 0x1000, 0x63, 0xFF, 0x03, 0x02, 0x02, 0x03, 0x01},
|
---|
127 | {0x07, 0xFFFF, TEXT, MTEXT, 4, 4, 720, 400, 80, 25, 9, 16, 0xB000, 0x1000, 0x66, 0xFF, 0x04, 0x03, 0x03, 0x01, 0x00},
|
---|
128 | {0x0D, 0xFFFF, GRAPH, PLANAR4, 8, 4, 320, 200, 40, 25, 8, 8, 0xA000, 0x2000, 0x63, 0xFF, 0x05, 0x04, 0x04, 0x04, 0x01},
|
---|
129 | {0x0E, 0xFFFF, GRAPH, PLANAR4, 4, 4, 640, 200, 80, 25, 8, 8, 0xA000, 0x4000, 0x63, 0xFF, 0x06, 0x04, 0x04, 0x05, 0x01},
|
---|
130 | {0x0F, 0xFFFF, GRAPH, PLANAR1, 2, 1, 640, 350, 80, 25, 8, 14, 0xA000, 0x8000, 0xa3, 0xFF, 0x07, 0x05, 0x04, 0x05, 0x00},
|
---|
131 | {0x10, 0xFFFF, GRAPH, PLANAR4, 2, 4, 640, 350, 80, 25, 8, 14, 0xA000, 0x8000, 0xa3, 0xFF, 0x07, 0x06, 0x04, 0x05, 0x02},
|
---|
132 | {0x11, 0xFFFF, GRAPH, PLANAR1, 1, 1, 640, 480, 80, 30, 8, 16, 0xA000, 0x0000, 0xe3, 0xFF, 0x08, 0x07, 0x04, 0x05, 0x02},
|
---|
133 | {0x12, 0xFFFF, GRAPH, PLANAR4, 1, 4, 640, 480, 80, 30, 8, 16, 0xA000, 0x0000, 0xe3, 0xFF, 0x08, 0x06, 0x04, 0x05, 0x02},
|
---|
134 | {0x13, 0xFFFF, GRAPH, LINEAR8, 1, 8, 320, 200, 40, 25, 8, 8, 0xA000, 0x0000, 0x63, 0xFF, 0x09, 0x08, 0x05, 0x06, 0x03},
|
---|
135 | {0x6A, 0xFFFF, GRAPH, PLANAR4, 1, 4, 800, 600,100, 37, 8, 16, 0xA000, 0x0000, 0xe3, 0xFF, 0x0A, 0x06, 0x04, 0x05, 0x02}
|
---|
136 | };
|
---|
137 |
|
---|
138 | /* CRTC */
|
---|
139 | #define CRTC_MAX_REG 0x18
|
---|
140 | #define CRTC_MAX_MODEL 0x0A
|
---|
141 | static Bit8u crtc_access[CRTC_MAX_REG+1]=
|
---|
142 | { /* 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 10 11 12 13 14 15 16 17 18 */
|
---|
143 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
|
---|
144 | };
|
---|
145 | static Bit8u crtc_regs[CRTC_MAX_MODEL+1][CRTC_MAX_REG+1]=
|
---|
146 | {/* Model 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 10 11 12 13 14 15 16 17 18 */
|
---|
147 | /* 00 */ 0x2d,0x27,0x28,0x90,0x2b,0xa0,0xbf,0x1f,0x00,0x4f,0x0d,0x0e,0x00,0x00,0x00,0x00,0x9c,0x8e,0x8f,0x14,0x1f,0x96,0xb9,0xa3,0xff,
|
---|
148 | /* 01 */ 0x5f,0x4f,0x50,0x82,0x55,0x81,0xbf,0x1f,0x00,0x4f,0x0d,0x0e,0x00,0x00,0x00,0x00,0x9c,0x8e,0x8f,0x28,0x1f,0x96,0xb9,0xa3,0xff,
|
---|
149 | /* 02 */ 0x2d,0x27,0x28,0x90,0x2b,0x80,0xbf,0x1f,0x00,0xc1,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x8e,0x8f,0x14,0x00,0x96,0xb9,0xa2,0xff,
|
---|
150 | /* 03 */ 0x5f,0x4f,0x50,0x82,0x54,0x80,0xbf,0x1f,0x00,0xc1,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x8e,0x8f,0x28,0x00,0x96,0xb9,0xc2,0xff,
|
---|
151 | /* 04 */ 0x5f,0x4f,0x50,0x82,0x55,0x81,0xbf,0x1f,0x00,0x4f,0x0d,0x0e,0x00,0x00,0x00,0x00,0x9c,0x8e,0x8f,0x28,0x0f,0x96,0xb9,0xa3,0xff,
|
---|
152 | /* 05 */ 0x2d,0x27,0x28,0x90,0x2b,0x80,0xbf,0x1f,0x00,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x8e,0x8f,0x14,0x00,0x96,0xb9,0xe3,0xff,
|
---|
153 | /* 06 */ 0x5f,0x4f,0x50,0x82,0x54,0x80,0xbf,0x1f,0x00,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x8e,0x8f,0x28,0x00,0x96,0xb9,0xe3,0xff,
|
---|
154 | /* 07 */ 0x5f,0x4f,0x50,0x82,0x54,0x80,0xbf,0x1f,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x83,0x85,0x5d,0x28,0x0f,0x63,0xba,0xe3,0xff,
|
---|
155 | /* 08 */ 0x5f,0x4f,0x50,0x82,0x54,0x80,0x0b,0x3e,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0x8c,0xdf,0x28,0x00,0xe7,0x04,0xe3,0xff,
|
---|
156 | /* 09 */ 0x5f,0x4f,0x50,0x82,0x54,0x80,0xbf,0x1f,0x00,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x9c,0x8e,0x8f,0x28,0x40,0x96,0xb9,0xa3,0xff,
|
---|
157 | /* 0A */ 0x7f,0x63,0x63,0x83,0x6b,0x1b,0x72,0xf0,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x59,0x8d,0x57,0x32,0x00,0x57,0x73,0xe3,0xff
|
---|
158 | };
|
---|
159 |
|
---|
160 | /* Attribute Controler 0x3c0 */
|
---|
161 | #define ACTL_MAX_REG 0x14
|
---|
162 | #define ACTL_MAX_MODEL 0x08
|
---|
163 |
|
---|
164 | static Bit8u actl_access[ACTL_MAX_REG+1]=
|
---|
165 | {/* 00 01 02 03 04 05 06 07 08 09 0A 0B OC OD OE OF 10 11 12 13 14 */
|
---|
166 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
|
---|
167 | };
|
---|
168 |
|
---|
169 | static Bit8u actl_regs[ACTL_MAX_MODEL+1][ACTL_MAX_REG+1]=
|
---|
170 | {/* Model 00 01 02 03 04 05 06 07 08 09 0A 0B OC OD OE OF 10 11 12 13 14 */
|
---|
171 | /* 00 */ 0x00,0x01,0x02,0x03,0x04,0x05,0x14,0x07,0x38,0x39,0x3a,0x3b,0x3c,0x3d,0x3e,0x3f,0x0c,0x00,0x0f,0x08,0x00,
|
---|
172 | /* 01 */ 0x00,0x13,0x15,0x17,0x02,0x04,0x06,0x07,0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17,0x01,0x00,0x03,0x00,0x00,
|
---|
173 | /* 02 */ 0x00,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x01,0x00,0x01,0x00,0x00,
|
---|
174 | /* 03 */ 0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x0e,0x00,0x0f,0x08,0x00,
|
---|
175 | /* 04 */ 0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17,0x01,0x00,0x0f,0x00,0x00,
|
---|
176 | /* 05 */ 0x00,0x08,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x18,0x00,0x00,0x01,0x00,0x01,0x00,0x00,
|
---|
177 | /* 06 */ 0x00,0x01,0x02,0x03,0x04,0x05,0x14,0x07,0x38,0x39,0x3a,0x3b,0x3c,0x3d,0x3e,0x3f,0x01,0x00,0x0f,0x00,0x00,
|
---|
178 | /* 07 */ 0x00,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x01,0x00,0x01,0x00,0x00,
|
---|
179 | /* 08 */ 0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0a,0x0b,0x0c,0x0d,0x0e,0x0f,0x41,0x00,0x0f,0x00,0x00
|
---|
180 | };
|
---|
181 |
|
---|
182 | /* Sequencer 0x3c4 */
|
---|
183 | #define SEQU_MAX_REG 0x04
|
---|
184 | #define SEQU_MAX_MODEL 0x06
|
---|
185 |
|
---|
186 | static Bit8u sequ_access[SEQU_MAX_REG+1]=
|
---|
187 | { /* 00 01 02 03 04 */
|
---|
188 | 0x00,0x00,0x00,0x00,0x00
|
---|
189 | };
|
---|
190 |
|
---|
191 | static Bit8u sequ_regs[SEQU_MAX_MODEL+1][SEQU_MAX_REG+1]=
|
---|
192 | {/* Model 00 01 02 03 04 */
|
---|
193 | /* 00 */ 0x03,0x08,0x03,0x00,0x02,
|
---|
194 | /* 01 */ 0x03,0x00,0x03,0x00,0x02,
|
---|
195 | /* 02 */ 0x03,0x09,0x03,0x00,0x02,
|
---|
196 | /* 03 */ 0x03,0x01,0x01,0x00,0x06,
|
---|
197 | /* 04 */ 0x03,0x09,0x0f,0x00,0x06,
|
---|
198 | /* 05 */ 0x03,0x01,0x0f,0x00,0x06,
|
---|
199 | /* 06 */ 0x03,0x01,0x0f,0x00,0x0e
|
---|
200 | };
|
---|
201 |
|
---|
202 | /* Graphic ctl 0x3ce */
|
---|
203 | #define GRDC_MAX_REG 0x08
|
---|
204 | #define GRDC_MAX_MODEL 0x05
|
---|
205 |
|
---|
206 | static Bit8u grdc_access[GRDC_MAX_REG+1]=
|
---|
207 | { /* 00 01 02 03 04 05 06 07 08 */
|
---|
208 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
|
---|
209 | };
|
---|
210 |
|
---|
211 | static Bit8u grdc_regs[GRDC_MAX_MODEL+1][GRDC_MAX_REG+1]=
|
---|
212 | {/* Model 00 01 02 03 04 05 06 07 08 */
|
---|
213 | /* 00 */ 0x00,0x00,0x00,0x00,0x00,0x10,0x0e,0x0f,0xff,
|
---|
214 | /* 01 */ 0x00,0x00,0x00,0x00,0x00,0x30,0x0f,0x0f,0xff,
|
---|
215 | /* 02 */ 0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x0f,0xff,
|
---|
216 | /* 03 */ 0x00,0x00,0x00,0x00,0x00,0x10,0x0a,0x0f,0xff,
|
---|
217 | /* 04 */ 0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x0f,0xff,
|
---|
218 | /* 05 */ 0x00,0x00,0x00,0x00,0x00,0x40,0x05,0x0f,0xff
|
---|
219 | };
|
---|
220 |
|
---|
221 | /* Default Palette */
|
---|
222 | #define DAC_MAX_MODEL 3
|
---|
223 |
|
---|
224 | static Bit8u dac_regs[DAC_MAX_MODEL+1]=
|
---|
225 | {0x3f,0x3f,0x3f,0xff};
|
---|
226 |
|
---|
227 | /* Mono */
|
---|
228 | static Bit8u palette0[63+1][3]=
|
---|
229 | {
|
---|
230 | 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
|
---|
231 | 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a,
|
---|
232 | 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a,
|
---|
233 | 0x3f,0x3f,0x3f, 0x3f,0x3f,0x3f, 0x3f,0x3f,0x3f, 0x3f,0x3f,0x3f, 0x3f,0x3f,0x3f, 0x3f,0x3f,0x3f, 0x3f,0x3f,0x3f, 0x3f,0x3f,0x3f,
|
---|
234 | 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
|
---|
235 | 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a,
|
---|
236 | 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a, 0x2a,0x2a,0x2a,
|
---|
237 | 0x3f,0x3f,0x3f, 0x3f,0x3f,0x3f, 0x3f,0x3f,0x3f, 0x3f,0x3f,0x3f, 0x3f,0x3f,0x3f, 0x3f,0x3f,0x3f, 0x3f,0x3f,0x3f, 0x3f,0x3f,0x3f
|
---|
238 | };
|
---|
239 |
|
---|
240 | static Bit8u palette1[63+1][3]=
|
---|
241 | {
|
---|
242 | 0x00,0x00,0x00, 0x00,0x00,0x2a, 0x00,0x2a,0x00, 0x00,0x2a,0x2a, 0x2a,0x00,0x00, 0x2a,0x00,0x2a, 0x2a,0x15,0x00, 0x2a,0x2a,0x2a,
|
---|
243 | 0x00,0x00,0x00, 0x00,0x00,0x2a, 0x00,0x2a,0x00, 0x00,0x2a,0x2a, 0x2a,0x00,0x00, 0x2a,0x00,0x2a, 0x2a,0x15,0x00, 0x2a,0x2a,0x2a,
|
---|
244 | 0x15,0x15,0x15, 0x15,0x15,0x3f, 0x15,0x3f,0x15, 0x15,0x3f,0x3f, 0x3f,0x15,0x15, 0x3f,0x15,0x3f, 0x3f,0x3f,0x15, 0x3f,0x3f,0x3f,
|
---|
245 | 0x15,0x15,0x15, 0x15,0x15,0x3f, 0x15,0x3f,0x15, 0x15,0x3f,0x3f, 0x3f,0x15,0x15, 0x3f,0x15,0x3f, 0x3f,0x3f,0x15, 0x3f,0x3f,0x3f,
|
---|
246 | 0x00,0x00,0x00, 0x00,0x00,0x2a, 0x00,0x2a,0x00, 0x00,0x2a,0x2a, 0x2a,0x00,0x00, 0x2a,0x00,0x2a, 0x2a,0x15,0x00, 0x2a,0x2a,0x2a,
|
---|
247 | 0x00,0x00,0x00, 0x00,0x00,0x2a, 0x00,0x2a,0x00, 0x00,0x2a,0x2a, 0x2a,0x00,0x00, 0x2a,0x00,0x2a, 0x2a,0x15,0x00, 0x2a,0x2a,0x2a,
|
---|
248 | 0x15,0x15,0x15, 0x15,0x15,0x3f, 0x15,0x3f,0x15, 0x15,0x3f,0x3f, 0x3f,0x15,0x15, 0x3f,0x15,0x3f, 0x3f,0x3f,0x15, 0x3f,0x3f,0x3f,
|
---|
249 | 0x15,0x15,0x15, 0x15,0x15,0x3f, 0x15,0x3f,0x15, 0x15,0x3f,0x3f, 0x3f,0x15,0x15, 0x3f,0x15,0x3f, 0x3f,0x3f,0x15, 0x3f,0x3f,0x3f
|
---|
250 | };
|
---|
251 |
|
---|
252 | static Bit8u palette2[63+1][3]=
|
---|
253 | {
|
---|
254 | 0x00,0x00,0x00, 0x00,0x00,0x2a, 0x00,0x2a,0x00, 0x00,0x2a,0x2a, 0x2a,0x00,0x00, 0x2a,0x00,0x2a, 0x2a,0x2a,0x00, 0x2a,0x2a,0x2a,
|
---|
255 | 0x00,0x00,0x15, 0x00,0x00,0x3f, 0x00,0x2a,0x15, 0x00,0x2a,0x3f, 0x2a,0x00,0x15, 0x2a,0x00,0x3f, 0x2a,0x2a,0x15, 0x2a,0x2a,0x3f,
|
---|
256 | 0x00,0x15,0x00, 0x00,0x15,0x2a, 0x00,0x3f,0x00, 0x00,0x3f,0x2a, 0x2a,0x15,0x00, 0x2a,0x15,0x2a, 0x2a,0x3f,0x00, 0x2a,0x3f,0x2a,
|
---|
257 | 0x00,0x15,0x15, 0x00,0x15,0x3f, 0x00,0x3f,0x15, 0x00,0x3f,0x3f, 0x2a,0x15,0x15, 0x2a,0x15,0x3f, 0x2a,0x3f,0x15, 0x2a,0x3f,0x3f,
|
---|
258 | 0x15,0x00,0x00, 0x15,0x00,0x2a, 0x15,0x2a,0x00, 0x15,0x2a,0x2a, 0x3f,0x00,0x00, 0x3f,0x00,0x2a, 0x3f,0x2a,0x00, 0x3f,0x2a,0x2a,
|
---|
259 | 0x15,0x00,0x15, 0x15,0x00,0x3f, 0x15,0x2a,0x15, 0x15,0x2a,0x3f, 0x3f,0x00,0x15, 0x3f,0x00,0x3f, 0x3f,0x2a,0x15, 0x3f,0x2a,0x3f,
|
---|
260 | 0x15,0x15,0x00, 0x15,0x15,0x2a, 0x15,0x3f,0x00, 0x15,0x3f,0x2a, 0x3f,0x15,0x00, 0x3f,0x15,0x2a, 0x3f,0x3f,0x00, 0x3f,0x3f,0x2a,
|
---|
261 | 0x15,0x15,0x15, 0x15,0x15,0x3f, 0x15,0x3f,0x15, 0x15,0x3f,0x3f, 0x3f,0x15,0x15, 0x3f,0x15,0x3f, 0x3f,0x3f,0x15, 0x3f,0x3f,0x3f
|
---|
262 | };
|
---|
263 |
|
---|
264 | static Bit8u palette3[256][3]=
|
---|
265 | {
|
---|
266 | 0x00,0x00,0x00, 0x00,0x00,0x2a, 0x00,0x2a,0x00, 0x00,0x2a,0x2a, 0x2a,0x00,0x00, 0x2a,0x00,0x2a, 0x2a,0x15,0x00, 0x2a,0x2a,0x2a,
|
---|
267 | 0x15,0x15,0x15, 0x15,0x15,0x3f, 0x15,0x3f,0x15, 0x15,0x3f,0x3f, 0x3f,0x15,0x15, 0x3f,0x15,0x3f, 0x3f,0x3f,0x15, 0x3f,0x3f,0x3f,
|
---|
268 | 0x00,0x00,0x00, 0x05,0x05,0x05, 0x08,0x08,0x08, 0x0b,0x0b,0x0b, 0x0e,0x0e,0x0e, 0x11,0x11,0x11, 0x14,0x14,0x14, 0x18,0x18,0x18,
|
---|
269 | 0x1c,0x1c,0x1c, 0x20,0x20,0x20, 0x24,0x24,0x24, 0x28,0x28,0x28, 0x2d,0x2d,0x2d, 0x32,0x32,0x32, 0x38,0x38,0x38, 0x3f,0x3f,0x3f,
|
---|
270 | 0x00,0x00,0x3f, 0x10,0x00,0x3f, 0x1f,0x00,0x3f, 0x2f,0x00,0x3f, 0x3f,0x00,0x3f, 0x3f,0x00,0x2f, 0x3f,0x00,0x1f, 0x3f,0x00,0x10,
|
---|
271 | 0x3f,0x00,0x00, 0x3f,0x10,0x00, 0x3f,0x1f,0x00, 0x3f,0x2f,0x00, 0x3f,0x3f,0x00, 0x2f,0x3f,0x00, 0x1f,0x3f,0x00, 0x10,0x3f,0x00,
|
---|
272 | 0x00,0x3f,0x00, 0x00,0x3f,0x10, 0x00,0x3f,0x1f, 0x00,0x3f,0x2f, 0x00,0x3f,0x3f, 0x00,0x2f,0x3f, 0x00,0x1f,0x3f, 0x00,0x10,0x3f,
|
---|
273 | 0x1f,0x1f,0x3f, 0x27,0x1f,0x3f, 0x2f,0x1f,0x3f, 0x37,0x1f,0x3f, 0x3f,0x1f,0x3f, 0x3f,0x1f,0x37, 0x3f,0x1f,0x2f, 0x3f,0x1f,0x27,
|
---|
274 |
|
---|
275 | 0x3f,0x1f,0x1f, 0x3f,0x27,0x1f, 0x3f,0x2f,0x1f, 0x3f,0x37,0x1f, 0x3f,0x3f,0x1f, 0x37,0x3f,0x1f, 0x2f,0x3f,0x1f, 0x27,0x3f,0x1f,
|
---|
276 | 0x1f,0x3f,0x1f, 0x1f,0x3f,0x27, 0x1f,0x3f,0x2f, 0x1f,0x3f,0x37, 0x1f,0x3f,0x3f, 0x1f,0x37,0x3f, 0x1f,0x2f,0x3f, 0x1f,0x27,0x3f,
|
---|
277 | 0x2d,0x2d,0x3f, 0x31,0x2d,0x3f, 0x36,0x2d,0x3f, 0x3a,0x2d,0x3f, 0x3f,0x2d,0x3f, 0x3f,0x2d,0x3a, 0x3f,0x2d,0x36, 0x3f,0x2d,0x31,
|
---|
278 | 0x3f,0x2d,0x2d, 0x3f,0x31,0x2d, 0x3f,0x36,0x2d, 0x3f,0x3a,0x2d, 0x3f,0x3f,0x2d, 0x3a,0x3f,0x2d, 0x36,0x3f,0x2d, 0x31,0x3f,0x2d,
|
---|
279 | 0x2d,0x3f,0x2d, 0x2d,0x3f,0x31, 0x2d,0x3f,0x36, 0x2d,0x3f,0x3a, 0x2d,0x3f,0x3f, 0x2d,0x3a,0x3f, 0x2d,0x36,0x3f, 0x2d,0x31,0x3f,
|
---|
280 | 0x00,0x00,0x1c, 0x07,0x00,0x1c, 0x0e,0x00,0x1c, 0x15,0x00,0x1c, 0x1c,0x00,0x1c, 0x1c,0x00,0x15, 0x1c,0x00,0x0e, 0x1c,0x00,0x07,
|
---|
281 | 0x1c,0x00,0x00, 0x1c,0x07,0x00, 0x1c,0x0e,0x00, 0x1c,0x15,0x00, 0x1c,0x1c,0x00, 0x15,0x1c,0x00, 0x0e,0x1c,0x00, 0x07,0x1c,0x00,
|
---|
282 | 0x00,0x1c,0x00, 0x00,0x1c,0x07, 0x00,0x1c,0x0e, 0x00,0x1c,0x15, 0x00,0x1c,0x1c, 0x00,0x15,0x1c, 0x00,0x0e,0x1c, 0x00,0x07,0x1c,
|
---|
283 |
|
---|
284 | 0x0e,0x0e,0x1c, 0x11,0x0e,0x1c, 0x15,0x0e,0x1c, 0x18,0x0e,0x1c, 0x1c,0x0e,0x1c, 0x1c,0x0e,0x18, 0x1c,0x0e,0x15, 0x1c,0x0e,0x11,
|
---|
285 | 0x1c,0x0e,0x0e, 0x1c,0x11,0x0e, 0x1c,0x15,0x0e, 0x1c,0x18,0x0e, 0x1c,0x1c,0x0e, 0x18,0x1c,0x0e, 0x15,0x1c,0x0e, 0x11,0x1c,0x0e,
|
---|
286 | 0x0e,0x1c,0x0e, 0x0e,0x1c,0x11, 0x0e,0x1c,0x15, 0x0e,0x1c,0x18, 0x0e,0x1c,0x1c, 0x0e,0x18,0x1c, 0x0e,0x15,0x1c, 0x0e,0x11,0x1c,
|
---|
287 | 0x14,0x14,0x1c, 0x16,0x14,0x1c, 0x18,0x14,0x1c, 0x1a,0x14,0x1c, 0x1c,0x14,0x1c, 0x1c,0x14,0x1a, 0x1c,0x14,0x18, 0x1c,0x14,0x16,
|
---|
288 | 0x1c,0x14,0x14, 0x1c,0x16,0x14, 0x1c,0x18,0x14, 0x1c,0x1a,0x14, 0x1c,0x1c,0x14, 0x1a,0x1c,0x14, 0x18,0x1c,0x14, 0x16,0x1c,0x14,
|
---|
289 | 0x14,0x1c,0x14, 0x14,0x1c,0x16, 0x14,0x1c,0x18, 0x14,0x1c,0x1a, 0x14,0x1c,0x1c, 0x14,0x1a,0x1c, 0x14,0x18,0x1c, 0x14,0x16,0x1c,
|
---|
290 | 0x00,0x00,0x10, 0x04,0x00,0x10, 0x08,0x00,0x10, 0x0c,0x00,0x10, 0x10,0x00,0x10, 0x10,0x00,0x0c, 0x10,0x00,0x08, 0x10,0x00,0x04,
|
---|
291 | 0x10,0x00,0x00, 0x10,0x04,0x00, 0x10,0x08,0x00, 0x10,0x0c,0x00, 0x10,0x10,0x00, 0x0c,0x10,0x00, 0x08,0x10,0x00, 0x04,0x10,0x00,
|
---|
292 |
|
---|
293 | 0x00,0x10,0x00, 0x00,0x10,0x04, 0x00,0x10,0x08, 0x00,0x10,0x0c, 0x00,0x10,0x10, 0x00,0x0c,0x10, 0x00,0x08,0x10, 0x00,0x04,0x10,
|
---|
294 | 0x08,0x08,0x10, 0x0a,0x08,0x10, 0x0c,0x08,0x10, 0x0e,0x08,0x10, 0x10,0x08,0x10, 0x10,0x08,0x0e, 0x10,0x08,0x0c, 0x10,0x08,0x0a,
|
---|
295 | 0x10,0x08,0x08, 0x10,0x0a,0x08, 0x10,0x0c,0x08, 0x10,0x0e,0x08, 0x10,0x10,0x08, 0x0e,0x10,0x08, 0x0c,0x10,0x08, 0x0a,0x10,0x08,
|
---|
296 | 0x08,0x10,0x08, 0x08,0x10,0x0a, 0x08,0x10,0x0c, 0x08,0x10,0x0e, 0x08,0x10,0x10, 0x08,0x0e,0x10, 0x08,0x0c,0x10, 0x08,0x0a,0x10,
|
---|
297 | 0x0b,0x0b,0x10, 0x0c,0x0b,0x10, 0x0d,0x0b,0x10, 0x0f,0x0b,0x10, 0x10,0x0b,0x10, 0x10,0x0b,0x0f, 0x10,0x0b,0x0d, 0x10,0x0b,0x0c,
|
---|
298 | 0x10,0x0b,0x0b, 0x10,0x0c,0x0b, 0x10,0x0d,0x0b, 0x10,0x0f,0x0b, 0x10,0x10,0x0b, 0x0f,0x10,0x0b, 0x0d,0x10,0x0b, 0x0c,0x10,0x0b,
|
---|
299 | 0x0b,0x10,0x0b, 0x0b,0x10,0x0c, 0x0b,0x10,0x0d, 0x0b,0x10,0x0f, 0x0b,0x10,0x10, 0x0b,0x0f,0x10, 0x0b,0x0d,0x10, 0x0b,0x0c,0x10,
|
---|
300 | 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00
|
---|
301 | };
|
---|
302 |
|
---|
303 | static Bit8u static_functionality[0x10]=
|
---|
304 | {
|
---|
305 | /* 0 */ 0xff, // All modes supported #1
|
---|
306 | /* 1 */ 0xe0, // All modes supported #2
|
---|
307 | /* 2 */ 0x0f, // All modes supported #3
|
---|
308 | /* 3 */ 0x00, 0x00, 0x00, 0x00, // reserved
|
---|
309 | /* 7 */ 0x07, // 200, 350, 400 scan lines
|
---|
310 | /* 8 */ 0x02, // mamimum number of visible charsets in text mode
|
---|
311 | /* 9 */ 0x08, // total number of charset blocks in text mode
|
---|
312 | /* a */ 0xe7, // Change to add new functions
|
---|
313 | /* b */ 0x0c, // Change to add new functions
|
---|
314 | /* c */ 0x00, // reserved
|
---|
315 | /* d */ 0x00, // reserved
|
---|
316 | /* e */ 0x00, // Change to add new functions
|
---|
317 | /* f */ 0x00 // reserved
|
---|
318 | };
|
---|