10 lines
528 B
Plaintext
10 lines
528 B
Plaintext
#define serpent_width 24
|
|
#define serpent_height 24
|
|
static char serpent_bits[] = {
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x80, 0x00, 0x00, 0xc0, 0x01, 0x00, 0xe0, 0x07, 0x00, 0xe0, 0x0f, 0x00,
|
|
0xf0, 0x1d, 0x00, 0x08, 0x18, 0x00, 0x04, 0x18, 0x00, 0x04, 0x18, 0x80,
|
|
0x02, 0x18, 0xc0, 0x00, 0x38, 0xe0, 0x00, 0x70, 0x70, 0x00, 0xe0, 0x3f,
|
|
0x00, 0xc0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|