This commit is contained in:
2026-07-15 08:07:06 -05:00
parent c77d9e1725
commit 44a0c9aeba
9 changed files with 126 additions and 51 deletions

13
kernel/lib/console.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef D_CONSOLE_H
#define D_CONSOLE_H
#include <lib/font.h>
void console_putchar(char c);
int set_console_font(const char* path);
void set_console_fg(uint32_t color);
void set_console_bg(uint32_t color);
void console_init();
#endif