mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-14 14:39:29 -07:00
22 lines
294 B
Plaintext
22 lines
294 B
Plaintext
#define saturn2_width 16
|
|
#define saturn2_height 16
|
|
static char saturn2_bits[] = {
|
|
0x00, 0xc0,
|
|
0x00, 0xf0,
|
|
0xc0, 0x4b,
|
|
0xf0, 0x6e,
|
|
0x78, 0x37,
|
|
0xb8, 0x1b,
|
|
0xfc, 0x2d,
|
|
0xfc, 0x2e,
|
|
0x7c, 0x37,
|
|
0xbc, 0x3b,
|
|
0xd8, 0x1d,
|
|
0xec, 0x16,
|
|
0x32, 0x0f,
|
|
0xda, 0x03,
|
|
0x0f, 0x00,
|
|
0x03, 0x00,
|
|
|
|
};
|