blob: 819f882f520dd439534eff2ceaee4e633092bfde (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Generated using the Spleen font and the bdf2c converter (modified using the conv.sh script)
// Spleen font: (c) 2018-2019, Frederic Cambus, License: MIT
// bdf2c: (c) 2009-2010 Lutz Sammer, License: AGPLv3
#ifndef MELVIX_FONT_H
#define MELVIX_FONT_H
#include <stdint.h>
uint16_t cursor[19] = {
};
uint8_t font_16[758][16] = {
};
uint16_t font_24[758][24] = {
};
uint16_t font_32[758][32] = {
};
#endif
|