aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/timer.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/drivers/timer.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/drivers/timer.c')
-rw-r--r--src/drivers/timer.c2
1 files changed, 1 insertions, 1 deletions
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);
}