feat: io: serial & console

This commit is contained in:
Karina
2025-12-21 13:40:52 +04:00
parent bce8adb119
commit 626174d3d5
13 changed files with 313 additions and 3 deletions
+10
View File
@@ -0,0 +1,10 @@
#ifndef CONSOLE_H
#define CONSOLE_H
#include "shitgui.h"
void console_init(SG_Context *ctx);
void console_set_color(u32 color);
void kprint(const char *str);
#endif