-
Notifications
You must be signed in to change notification settings - Fork 0
/
c2p_ocs_palette.c
45 lines (44 loc) · 1.53 KB
/
c2p_ocs_palette.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* :ts=4 c2p_ocs_palette.c
*
* cp4 - Commodore C+4 emulator
* Copyright (C) 1998 Gáti Gergely
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* e-mail: [email protected]
*/
#ifndef C2P_OCS_PALETTE_C
#define C2P_OCS_PALETTE_C
static ULONG Palette[]={
16<<16,
0x00000000,0x00000000,0x00000000,
0xa2a2a2a2,0xa2a2a2a2,0xa2a2a2a2,
0xbcbcbcbc,0x44444444,0x44444444,
0x00000000,0xaaaaaaaa,0xa4a4a4a4,
0xb8b8b8b8,0x4a4a4a4a,0xb8b8b8b8,
0x3c3c3c3c,0xaaaaaaaa,0x36363636,
0x4a4a4a4a,0x4c4c4c4c,0xb8b8b8b8,
0xaaaaaaaa,0xa4a4a4a4,0x12121212,
0xc0c0c0c0,0x7a7a7a7a,0x0a0a0a0a,
0xb0b0b0b0,0x78787878,0x46464646,
0x8e8e8e8e,0xacacacac,0x46464646,
0xbcbcbcbc,0x1e1e1e1e,0x4a4a4a4a,
0x00000000,0xb2b2b2b2,0x9e9e9e9e,
0x66666666,0x84848484,0xb8b8b8b8,
0x58585858,0x5c5c5c5c,0xb8b8b8b8,
0x58585858,0xaaaaaaaa,0x40404040,
0L
};
#endif