Trust uboot's device list only if it does not look suspicious.
[AROS.git] / compiler / coolimages / askimage.c
blob601db818c9af98b13b72a33eb1d1e473fc23ec3f
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
9 #include "coolimages.h"
11 #define ASKIMAGE_WIDTH 16
12 #define ASKIMAGE_HEIGHT 16
13 #define ASKIMAGE_COLORS 4
15 static const UBYTE askimage_data[] =
17 00,00,00,00,00,03,03,03,03,03,00,00,00,00,00,00,
18 00,00,00,03,03,03,03,03,03,03,03,03,00,00,00,00,
19 00,00,03,03,03,03,03,03,03,03,03,03,03,00,00,00,
20 00,03,03,03,03,02,02,02,02,02,03,03,03,03,00,00,
21 00,03,03,03,02,02,02,02,02,02,02,03,03,03,01,00,
22 03,03,03,03,02,02,03,03,02,02,02,03,03,03,03,00,
23 03,03,03,03,03,03,03,03,02,02,02,03,03,03,03,01,
24 03,03,03,03,03,03,03,02,02,02,03,03,03,03,03,01,
25 03,03,03,03,03,03,02,02,02,03,03,03,03,03,03,01,
26 03,03,03,03,03,03,02,02,02,03,03,03,03,03,03,01,
27 00,03,03,03,03,03,03,03,03,03,03,03,03,03,01,01,
28 00,03,03,03,03,03,02,02,02,03,03,03,03,03,01,00,
29 00,00,03,03,03,03,02,02,02,03,03,03,03,01,01,00,
30 00,00,00,03,03,03,03,03,03,03,03,03,01,01,00,00,
31 00,00,00,00,01,03,03,03,03,03,01,01,01,00,00,00,
32 00,00,00,00,00,00,01,01,01,01,01,00,00,00,00,00
35 static const UBYTE askimage_pal[] =
37 0xb3,0xb3,0xb3,0x00,0x00,0x00,
38 0xe0,0xe0,0xe0,0xc8,0x00,0x00
41 const struct CoolImage cool_askimage =
43 askimage_data,
44 askimage_pal,
45 ASKIMAGE_WIDTH,
46 ASKIMAGE_HEIGHT,
47 ASKIMAGE_COLORS