8 lines
411 B
C
8 lines
411 B
C
#define bug_width 18
|
|
#define bug_height 18
|
|
static char bug_bits[] = {
|
|
0x0F, 0xC0, 0x03, 0x0F, 0xC0, 0x03, 0x30, 0x30, 0x00, 0x30, 0x30, 0x00,
|
|
0xC0, 0x0F, 0x00, 0xC0, 0x0F, 0x00, 0xC0, 0x0F, 0x00, 0xC0, 0x0F, 0x00,
|
|
0xCF, 0xCF, 0x03, 0xCF, 0xCF, 0x03, 0xF0, 0x3F, 0x00, 0xF0, 0x3F, 0x00,
|
|
0xFC, 0xFF, 0x00, 0xFC, 0xFF, 0x00, 0xF3, 0x3F, 0x03, 0xF3, 0x3F, 0x03,
|
|
0xC3, 0x0F, 0x03, 0xC3, 0x0F, 0x03, };
|