Trust uboot's device list only if it does not look suspicious.
[AROS.git] / compiler / coolimages / flagimage.c
blob6f08b5ab0e2c7e02418a2c0329621881e6f2ce9b
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include "coolimages.h"
8 #define FLAGIMAGE_WIDTH 13
9 #define FLAGIMAGE_HEIGHT 15
10 #define FLAGIMAGE_COLORS 5
12 static const UBYTE flagimage_data[] =
14 00,00,01,01,01,00,00,00,00,00,00,00,00,
15 00,01,02,02,02,01,00,00,00,00,00,00,00,
16 01,02,02,02,02,03,01,00,00,00,00,00,01,
17 01,02,02,02,02,03,04,01,00,00,00,01,01,
18 01,02,02,02,02,03,04,04,01,01,01,04,01,
19 01,02,02,02,02,03,04,04,03,02,03,04,01,
20 01,02,02,02,02,03,04,04,03,02,03,04,01,
21 01,02,02,02,02,03,04,04,03,02,03,04,01,
22 01,02,02,02,02,03,04,04,03,02,03,04,01,
23 01,02,02,02,02,03,04,04,03,02,03,04,01,
24 01,02,01,01,01,03,04,04,03,02,03,04,01,
25 01,01,00,00,00,01,04,04,03,02,03,04,01,
26 01,00,00,00,00,00,01,04,03,02,03,04,01,
27 00,00,00,00,00,00,00,01,03,02,03,01,00,
28 00,00,00,00,00,00,00,00,01,01,01,00,00
31 static const UBYTE flagimage_pal[] =
33 0xb3,0xb3,0xb3,0x00,0x00,0x00,
34 0xdf,0xdf,0xfa,0xb8,0xb8,0xf3,
35 0x63,0x63,0x00
38 const struct CoolImage cool_flagimage =
40 flagimage_data,
41 flagimage_pal,
42 FLAGIMAGE_WIDTH,
43 FLAGIMAGE_HEIGHT,
44 FLAGIMAGE_COLORS