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/interrupts.c | 1 - src/drivers/timer.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'src/drivers') 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); } -- cgit v1.2.3