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/drivers | |
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/drivers')
-rw-r--r-- | src/drivers/interrupts.c | 1 | ||||
-rw-r--r-- | src/drivers/timer.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/drivers/interrupts.c b/src/drivers/interrupts.c index d65490c..dc031e0 100644 --- a/src/drivers/interrupts.c +++ b/src/drivers/interrupts.c @@ -190,5 +190,4 @@ void interrupts_install() idt_install(); isr_install(); irq_install(); - __asm__("sti"); } diff --git a/src/drivers/timer.c b/src/drivers/timer.c index 922b385..a3b4137 100644 --- a/src/drivers/timer.c +++ b/src/drivers/timer.c @@ -34,6 +34,6 @@ void timer_wait(u32 ticks) // Install timer handler into IRQ0 void timer_install() { - /* timer_phase(1000); */ + timer_phase(1000); irq_install_handler(0, timer_handler); } |