10 lines
440 B
Plaintext
10 lines
440 B
Plaintext
#define ring_width 24
|
|
#define ring_height 24
|
|
static char ring_bits[] = {
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x22,0x00,0x00,0x22,0x00,
|
|
0x80,0xf7,0x00,0x00,0x7f,0x00,0x00,0x77,0x00,0x80,0xc1,0x00,
|
|
0x80,0x80,0x00,0xc0,0x80,0x01,0x40,0x00,0x01,0xc0,0x80,0x01,
|
|
0x80,0x80,0x00,0x80,0xc1,0x00,0x00,0x77,0x00,0x00,0x1c,0x00,
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
|