1
2
3
4
5
6
7
8
|
#define ell_width 16
#define ell_height 16
#define ell_x_hot -1
#define ell_y_hot -1
static char ell_bits[] = {
0x00, 0x00, 0xc0, 0x01, 0x40, 0x01, 0x60, 0x01, 0x20, 0x01, 0xa0, 0x01,
0x90, 0x00, 0x50, 0x00, 0x70, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00,
0x28, 0x02, 0x28, 0x02, 0x60, 0x03, 0xc0, 0x01};
|