Trust uboot's device list only if it does not look suspicious.
[AROS.git] / compiler / coolimages / dotimage.c
blob3d8bbb0dbf6cc5a2ee363309db0111eca15bd9ae
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include "coolimages.h"
8 #define DOTIMAGE_WIDTH 9
9 #define DOTIMAGE_HEIGHT 9
10 #define DOTIMAGE_COLORS 3
12 static const UBYTE dotimage_data[] =
14 00,00,00,02,02,02,00,00,00,
15 00,02,02,02,02,02,02,01,00,
16 00,02,02,02,02,02,02,01,00,
17 02,02,02,02,02,02,02,02,01,
18 02,02,02,02,02,02,02,02,01,
19 02,02,02,02,02,02,02,02,01,
20 00,02,02,02,02,02,02,01,00,
21 00,01,01,02,02,02,01,01,00,
22 00,00,00,01,01,01,00,00,00
25 static const UBYTE dotimage_pal[] =
27 0xb3,0xb3,0xb3,0x00,0x00,0x00,
28 0x00,0x76,0x00
31 static const UBYTE dotimage2_pal[] =
33 0xb3,0xb3,0xb3,0x00,0x00,0x00,
34 0x00,0x00,0xA0
37 const struct CoolImage cool_dotimage =
39 dotimage_data,
40 dotimage_pal,
41 DOTIMAGE_WIDTH,
42 DOTIMAGE_HEIGHT,
43 DOTIMAGE_COLORS
46 const struct CoolImage cool_dotimage2 =
48 dotimage_data,
49 dotimage2_pal,
50 DOTIMAGE_WIDTH,
51 DOTIMAGE_HEIGHT,
52 DOTIMAGE_COLORS