summaryrefslogtreecommitdiff
path: root/stage3/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'stage3/main.c')
-rw-r--r--stage3/main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/stage3/main.c b/stage3/main.c
index fb09dbb..f87b0b3 100644
--- a/stage3/main.c
+++ b/stage3/main.c
@@ -5,6 +5,7 @@
#include "heap.h"
#include "font.h"
#include "letters.h"
+#include "interrupts.h"
void clear_screen(); // framebuffer.asm
@@ -68,5 +69,9 @@ void init()
print("\n");
}
+ init_interrupts();
+
+ int a = 1/0;
+
halt();
}