9 lines
441 B
Plaintext
9 lines
441 B
Plaintext
#define gol_width 24
|
|
#define gol_height 24
|
|
static char gol_bits[] = {
|
|
0x7b,0xff,0x05,0xb5,0xf7,0x05,0xeb,0xe3,0x07,0x7f,0xe3,0x0f,0xb1,0xe3,0x0f,
|
|
0x67,0xc3,0x0f,0xbf,0x83,0x1f,0xff,0x83,0x1f,0xe6,0xc3,0x1f,0xcf,0xc3,0x1f,
|
|
0xff,0xc3,0x0f,0xff,0x81,0x0f,0xff,0x81,0x0f,0xff,0x01,0x07,0xdf,0x01,0x00,
|
|
0xff,0x01,0x00,0xef,0x01,0x00,0xf7,0x03,0x00,0x7f,0x03,0x00,0xbf,0x03,0x00,
|
|
0x5d,0x03,0x00,0xbd,0x02,0x00,0x78,0x03,0x00,0xf8,0x03,0x00};
|