aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorMarvin Borner2020-07-22 21:43:05 +0200
committerMarvin Borner2020-07-22 21:43:05 +0200
commit6f0f8d26d2710e24192e56e85ecb5fc2b7f54da7 (patch)
tree747eea900f121a50579f62ac230875f07d8f6149 /src/main.c
parente9c31cf19a30bd2d9960ce8341fea9cbfc973f7a (diff)
Added interrupts
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;