scan code to ascii

This commit is contained in:
nub31
2025-08-29 16:03:44 +02:00
parent 3e510a3e1b
commit e6963aa6ed
3 changed files with 29 additions and 3 deletions

View File

@@ -6,7 +6,7 @@
void keyboard_handler(const keyboard_event_t* event)
{
if (event->pressed)
if (event->pressed && event->ascii)
{
vga_print_char(event->ascii);
}