diff options
author | Marvin Borner | 2020-07-28 22:06:43 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-28 22:06:43 +0200 |
commit | 2218b243897843536c1191f268a91dcb0375d8ac (patch) | |
tree | e50c940f4bee2f50df292a6e471c22a8084e2cf2 /src/main.c | |
parent | 44fa7a529656c1ec8a445cac4ee7b40351a7c753 (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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |