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 GitHub
parent 4c7de228f9
commit 5a664c6e31

View File

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