summaryrefslogtreecommitdiff
path: root/kernel/include/keymap.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/include/keymap.h')
-rw-r--r--kernel/include/keymap.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/include/keymap.h b/kernel/include/keymap.h
index c9b8697..62d6a96 100644
--- a/kernel/include/keymap.h
+++ b/kernel/include/keymap.h
@@ -89,7 +89,7 @@
#define KEY_F11 0x57
#define KEY_F12 0x58
-char keymap[] = {
+const char keymap[] = {
' ',
' ',
'1',
@@ -220,9 +220,9 @@ char keymap[] = {
' ',
};
-uint16_t keymap_len = 128;
+const uint16_t keymap_len = 128;
-char shift_keymap[] = {
+const char shift_keymap[] = {
' ',
' ',
'!',
@@ -353,6 +353,6 @@ char shift_keymap[] = {
' ',
};
-uint16_t shift_keymap_len = 128;
+const uint16_t shift_keymap_len = 128;
#endif