9 lines
441 B
Plaintext
9 lines
441 B
Plaintext
#define gol_width 24
|
|
#define gol_height 24
|
|
static char gol_bits[] = {
|
|
0xf9,0x03,0x00,0xf1,0x07,0x00,0xf0,0x07,0x00,0xf0,0x07,0x00,0xf0,0x07,0x00,
|
|
0xf0,0x07,0x00,0xf0,0x07,0x00,0xf0,0x07,0x00,0xe0,0x07,0x00,0xe0,0x1f,0x00,
|
|
0xe0,0x3f,0x00,0xe0,0x3f,0x00,0x80,0x3f,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
|