Update keyboard.h

Add a extern const for the scancode map
This commit is contained in:
2026-01-24 22:14:37 -08:00
committed by Borna Šoštarić
parent 96050d6a99
commit d30bc6a7f5

View File

@@ -3,5 +3,6 @@
void keyboard_init(void); void keyboard_init(void);
char keyboard_get_char(void); // Blocking read from buffer char keyboard_get_char(void); // Blocking read from buffer
extern const char scancode_map[128];
#endif #endif