From ed3da12bb378d82878fff1d50e5e9e7af3d7265d Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 4 Dec 2019 20:38:10 +0100 Subject: More-working syscall logic (parameters work!) --- src/kernel/interrupts/irq.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/kernel/interrupts/irq.c') diff --git a/src/kernel/interrupts/irq.c b/src/kernel/interrupts/irq.c index a0a396d..2fae9de 100644 --- a/src/kernel/interrupts/irq.c +++ b/src/kernel/interrupts/irq.c @@ -102,15 +102,13 @@ void irq_handler(struct regs *r) // Execute custom handler if exists handler = irq_routines[r->int_no - 32]; - if (handler) { + if (handler) handler(r); - } // Send end of interrupt to second (slave) IRQ controller - if (r->int_no >= 40) { + if (r->int_no >= 40) outb(0xA0, 0x20); - } // Send end of interrupt to master interrupt controller outb(0x20, 0x20); -} +} \ No newline at end of file -- cgit v1.2.3