aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorMarvin Borner2020-07-28 22:06:43 +0200
committerMarvin Borner2020-07-28 22:06:43 +0200
commit2218b243897843536c1191f268a91dcb0375d8ac (patch)
treee50c940f4bee2f50df292a6e471c22a8084e2cf2 /src/main.c
parent44fa7a529656c1ec8a445cac4ee7b40351a7c753 (diff)
Yay, timer works.
This confirms my assumption that the errors are the bootloaders fault by not supporting indirect pointers.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index e7ccdbc..92ec61c 100644
--- a/src/main.c
+++ b/src/main.c
@@ -9,7 +9,7 @@
#include <keyboard.h>
#include <print.h>
#include <serial.h>
-/* #include <timer.h> */
+#include <timer.h>
u32 HEAP = 0x00200000;
u32 HEAP_START;
@@ -29,7 +29,7 @@ void main(struct mem_info *mem_info, struct vid_info *vid_info)
// Install drivers
interrupts_install();
- /* timer_install(); */
+ timer_install();
keyboard_install();
// Enable drivers