summaryrefslogtreecommitdiff
path: root/kernel/include/keymap.h
diff options
context:
space:
mode:
authorAleksa Vuckovic <aleksav013@gmail.com>2022-09-03 23:53:53 +0200
committerAleksa Vuckovic <aleksav013@gmail.com>2022-09-04 16:42:56 +0200
commit6e9b3275d75e0cdbae1e8f7e4dda8880bb6346bc (patch)
treed6c7daf073f41ec2df196a322e8d1210d8e126a1 /kernel/include/keymap.h
parent11ced165e0df11cc3c889eb0cc402467361c421b (diff)
gdt & tss
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