From 2218b243897843536c1191f268a91dcb0375d8ac Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 28 Jul 2020 22:06:43 +0200 Subject: Yay, timer works. This confirms my assumption that the errors are the bootloaders fault by not supporting indirect pointers. --- src/drivers/timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/drivers/timer.c') 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); } -- cgit v1.2.3