1
2
3
4
5
6
|
#define note_width 16
#define note_height 16
static char note_bits[] = {
0xff, 0x03, 0x01, 0x06, 0x81, 0x0a, 0x81, 0x12, 0x81, 0x22, 0x81, 0x7e,
0x81, 0x40, 0x81, 0x40, 0x81, 0x40, 0x81, 0x40, 0x81, 0x40, 0x01, 0x40,
0x81, 0x40, 0x01, 0x40, 0x01, 0x40, 0xff, 0x7f};
|