summaryrefslogtreecommitdiff
path: root/kernel/include/keyboard.h
diff options
context:
space:
mode:
authorAleksa Vuckovic <aleksav013@gmail.com>2022-12-02 00:56:33 +0100
committerAleksa Vuckovic <aleksav013@gmail.com>2022-12-02 00:56:33 +0100
commitae5499137e377e08feb523c08b26495e79ed16df (patch)
tree225f97cce28e31e064f08670cc9feb7ba101a45f /kernel/include/keyboard.h
parent9b3dd99abc763f5e2039933eda510ec62d395f8a (diff)
now also working on amd cpus
Diffstat (limited to 'kernel/include/keyboard.h')
-rw-r--r--kernel/include/keyboard.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/include/keyboard.h b/kernel/include/keyboard.h
index e8dc774..8b4085a 100644
--- a/kernel/include/keyboard.h
+++ b/kernel/include/keyboard.h
@@ -4,8 +4,10 @@
#include <types.h>
#define KEYBOARD_DATA_PORT 0x60
+#define KEYBOARD_CMD_PORT 0x60
#define KEYBOARD_STATUS_PORT 0x64
void keyboard_handler(void);
+void init_keyboard(void);
#endif