Trust uboot's device list only if it does not look suspicious.
[AROS.git] / compiler / coolimages / clockimage.c
blob9e171017b9842f9026ae2e8458908ae11c9988af
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include "coolimages.h"
8 #define CLOCKIMAGE_WIDTH 15
9 #define CLOCKIMAGE_HEIGHT 15
10 #define CLOCKIMAGE_COLORS 3
12 static const UBYTE clockimage_data[] =
14 00,00,00,00,00,01,01,01,01,01,00,00,00,00,00,
15 00,00,00,01,01,02,02,02,02,02,01,01,00,00,00,
16 00,00,01,02,02,02,02,01,02,02,02,02,01,00,00,
17 00,01,02,02,02,02,02,02,02,02,02,02,02,01,00,
18 00,01,02,02,02,02,02,01,02,02,02,02,02,01,00,
19 01,02,02,02,02,02,02,01,02,02,02,02,02,02,01,
20 01,02,02,02,02,02,02,01,02,02,02,02,02,02,01,
21 01,02,01,02,02,02,02,01,02,02,02,02,01,02,01,
22 01,02,02,02,02,02,02,02,01,02,02,02,02,02,01,
23 01,02,02,02,02,02,02,02,02,01,02,02,02,02,01,
24 00,01,02,02,02,02,02,02,02,02,02,02,02,01,00,
25 00,01,02,02,02,02,02,02,02,02,02,02,02,01,00,
26 00,00,01,02,02,02,02,01,02,02,02,02,01,00,00,
27 00,00,00,01,01,02,02,02,02,02,01,01,00,00,00,
28 00,00,00,00,00,01,01,01,01,01,00,00,00,00,00
31 static const UBYTE clockimage_pal[] =
33 0xb3,0xb3,0xb3,0x00,0x00,0x00,
34 0xff,0xff,0xff
37 const struct CoolImage cool_clockimage =
39 clockimage_data,
40 clockimage_pal,
41 CLOCKIMAGE_WIDTH,
42 CLOCKIMAGE_HEIGHT,
43 CLOCKIMAGE_COLORS