From 4c7de228f9792a17edcc64b5422c0fcafa14f5c9 Mon Sep 17 00:00:00 2001 From: Gregory Bowne Date: Sat, 24 Jan 2026 22:13:32 -0800 Subject: [PATCH] Update keyboard.c remove static --- kernel/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/keyboard.c b/kernel/keyboard.c index 8d83d8e..4984dc9 100644 --- a/kernel/keyboard.c +++ b/kernel/keyboard.c @@ -13,7 +13,7 @@ static uint8_t buffer_count = 0; static uint8_t buffer_index = 0; // Basic US QWERTY keymap (scancode to ASCII) -static const char scancode_map[128] = { +const char scancode_map[128] = { 0, 27, '1', '2', '3', '4', '5', '6', '7', '8', // 0x00 - 0x09 '9', '0', '-', '=', '\b', '\t', 'q', 'w', 'e', 'r', // 0x0A - 0x13 't', 'y', 'z', 'u', 'i', 'o', 'p', '[', ']', '\n', // 0x14 - 0x1D