aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorMarvin Borner2020-07-22 22:25:28 +0200
committerMarvin Borner2020-07-22 22:25:28 +0200
commite7662496ad331266b8fcc0df514523f97cb703e4 (patch)
tree52a7bc6e0d37e051abdbd3f529e7967a1c18ef50 /src/main.c
parent6f0f8d26d2710e24192e56e85ecb5fc2b7f54da7 (diff)
Initial keyboard implementation
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index b873791..947c0e1 100644
--- a/src/main.c
+++ b/src/main.c
@@ -3,6 +3,7 @@
#include <boot.h>
#include <def.h>
#include <interrupts.h>
+#include <keyboard.h>
#include <serial.h>
#include <vesa.h>
@@ -13,6 +14,7 @@ void main(struct mem_info *mem_info, struct vid_info *vid_info)
{
HEAP_START = HEAP; // For malloc function
interrupts_install();
+ keyboard_install();
mem_info++; // TODO: Use the mmap (or remove)!
vbe = vid_info->info;