remove old term support + PSFv1 font

This commit is contained in:
2026-03-05 09:10:06 +01:00
parent b9f55d89f6
commit c8a72244b1
9 changed files with 64 additions and 191 deletions
-19
View File
@@ -7,26 +7,7 @@
#ifndef TERM_H
#define TERM_H
int term_init();
void kputs(const char* str);
void _putchar(char character);
enum TermColors
{
BLACK = 0x000000,
WHITE = 0xffffff
};
#define PSF1_FONT_MAGIC 0x0436
typedef struct
{
uint16_t magic;
uint8_t fontMode;
uint8_t characterSize; // height
} PSF1_Header;
// debug
void term_scroll();
#endif