diff options
Diffstat (limited to 'src/kernel/graphics/font.h')
-rw-r--r-- | src/kernel/graphics/font.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/kernel/graphics/font.h b/src/kernel/graphics/font.h index 7a110e1..bcf0b30 100644 --- a/src/kernel/graphics/font.h +++ b/src/kernel/graphics/font.h @@ -7,6 +7,28 @@ #include <stdint.h> +uint16_t cursor[19] = { + 0b100000000000, + 0b110000000000, + 0b111000000000, + 0b111100000000, + 0b111110000000, + 0b111111000000, + 0b111111100000, + 0b111111110000, + 0b111111111000, + 0b111111111100, + 0b111111111110, + 0b111111111111, + 0b111111111111, + 0b111111110000, + 0b111101111000, + 0b111001111000, + 0b110000111100, + 0b000000111100, + 0b000000011000 +}; + uint8_t font_16[758][16] = { // 32 $20 'SPACE' // width 8, bbx 0, bby -4, bbw 8, bbh 16 |