Trust uboot's device list only if it does not look suspicious.
[AROS.git] / compiler / coolimages / diskimage.c
blob972efa454032fc4c1863dea61df8d309b57210a9
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include "coolimages.h"
8 #define DISKIMAGE_WIDTH 16
9 #define DISKIMAGE_HEIGHT 16
10 #define DISKIMAGE_COLORS 4
12 static const UBYTE diskimage_data[] =
14 00,03,03,03,03,03,03,03,03,03,03,03,03,03,03,00,
15 03,03,02,02,02,02,02,02,02,02,02,02,02,02,03,01,
16 03,03,02,02,03,03,03,03,03,03,03,03,02,02,03,01,
17 03,03,02,02,02,02,02,02,02,02,02,02,02,02,03,01,
18 03,03,02,02,03,03,03,03,03,03,03,03,02,02,03,01,
19 03,03,02,02,02,02,02,02,02,02,02,02,02,02,03,01,
20 03,03,03,02,02,02,02,02,02,02,02,02,02,03,03,01,
21 03,03,03,03,03,03,03,03,03,03,03,03,03,03,03,01,
22 03,03,03,03,03,03,03,03,03,03,03,03,03,03,03,01,
23 03,03,03,02,02,02,02,02,02,02,02,02,02,03,03,01,
24 03,03,03,02,02,03,03,02,02,02,02,02,02,03,03,01,
25 03,03,03,02,02,03,03,02,02,02,02,02,02,03,03,01,
26 03,03,03,02,02,03,03,02,02,02,02,02,02,03,03,01,
27 03,03,03,02,02,02,02,02,02,02,02,02,02,03,03,01,
28 00,01,01,01,01,01,01,01,01,01,01,01,01,01,01,00,
29 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
32 static const UBYTE diskimage_pal[] =
34 0xb3,0xb3,0xb3,0x00,0x00,0x00,
35 0xe0,0xe0,0xe0,0x65,0x4b,0xbf
38 const struct CoolImage cool_diskimage =
40 diskimage_data,
41 diskimage_pal,
42 DISKIMAGE_WIDTH,
43 DISKIMAGE_HEIGHT,
44 DISKIMAGE_COLORS