1
2
3
4
5
6
7
|
#define ai_width 20
#define ai_height 16
static char ai_bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xf0, 0x03, 0x00, 0x18, 0x03, 0x00, 0x18, 0x83, 0x01, 0x0c, 0x83, 0x00,
0x8c, 0x01, 0x00, 0x8c, 0x61, 0x00, 0x8c, 0xe5, 0x00, 0xcc, 0xd5, 0x00,
0xf8, 0x43, 0x00, 0x00, 0xe0, 0x00, 0x00, 0xa0, 0x00, 0x00, 0xe0, 0x00};
|