Trust uboot's device list only if it does not look suspicious.
[AROS.git] / compiler / coolimages / headimage.c
blob53ca51f21399fc81c5ddf0f4d66795c4403f747d
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include "coolimages.h"
8 #define HEADIMAGE_WIDTH 13
9 #define HEADIMAGE_HEIGHT 15
10 #define HEADIMAGE_COLORS 7
12 static const UBYTE headimage_data[] =
14 00,00,00,00,01,01,01,01,01,01,00,00,00,
15 00,00,00,01,02,02,02,02,02,02,01,00,00,
16 00,00,01,02,02,02,02,02,02,02,02,01,00,
17 00,01,02,02,02,02,02,02,02,02,02,02,01,
18 00,01,02,02,02,02,02,02,03,03,03,01,00,
19 01,02,02,02,02,02,03,03,03,03,03,01,00,
20 01,02,02,02,02,02,03,03,04,01,03,05,01,
21 01,02,02,02,03,02,03,03,05,05,03,06,01,
22 01,02,02,05,03,03,03,03,03,03,03,03,01,
23 01,02,02,05,05,03,03,03,03,03,03,03,01,
24 01,02,02,03,03,03,03,03,03,03,05,05,01,
25 01,01,01,05,05,03,03,03,03,03,03,01,00,
26 00,00,00,01,05,05,03,03,03,03,03,01,00,
27 00,00,00,00,01,05,05,05,03,01,01,00,00,
28 00,00,00,00,01,01,01,01,01,00,00,00,00,
31 static const UBYTE headimage_pal[] =
33 0xb3,0xb3,0xb3,0x00,0x00,0x00,
34 0x72,0x1d,0x1d,0xf9,0xd1,0xd1,
35 0xff,0xff,0xff,0xc9,0xa9,0xa9,
36 0xdb,0xb8,0xb8
39 const struct CoolImage cool_headimage =
41 headimage_data,
42 headimage_pal,
43 HEADIMAGE_WIDTH,
44 HEADIMAGE_HEIGHT,
45 HEADIMAGE_COLORS