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 ce5b39a..b873791 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2,6 +2,7 @@
#include <boot.h>
#include <def.h>
+#include <interrupts.h>
#include <serial.h>
#include <vesa.h>
@@ -11,6 +12,7 @@ u32 HEAP_START;
void main(struct mem_info *mem_info, struct vid_info *vid_info)
{
HEAP_START = HEAP; // For malloc function
+ interrupts_install();
mem_info++; // TODO: Use the mmap (or remove)!
vbe = vid_info->info;