diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |