Fixed kbd (buffer flush)

This commit is contained in:
2026-03-08 09:54:45 +01:00
parent 77d9df6f48
commit 5e9c582833
5 changed files with 23 additions and 15 deletions

View File

@@ -22,6 +22,7 @@ extern struct flanterm_context* ft_ctx;
// Overhead that could be avoided, right? (for printf)
void _putchar(char character)
{
// TODO: Spinlock here (terminal access)
flanterm_write(ft_ctx, &character, 1);
}