aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
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;