From c31d465a62fbc0ec3194838db4745585471c1050 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 21 Sep 2019 18:07:07 +0200 Subject: Added ACPI based shutdown command --- src/kernel/interrupts/irq.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'src/kernel/interrupts/irq.c') diff --git a/src/kernel/interrupts/irq.c b/src/kernel/interrupts/irq.c index cf9e1fe..834b192 100644 --- a/src/kernel/interrupts/irq.c +++ b/src/kernel/interrupts/irq.c @@ -56,16 +56,16 @@ int irq_is_installed(int irq) { // Remap IRQs for protected mode compatibility via the PIC void irq_remap(void) { - send(0x20, 0x11); - send(0xA0, 0x11); - send(0x21, 0x20); - send(0xA1, 0x28); - send(0x21, 0x04); - send(0xA1, 0x02); - send(0x21, 0x01); - send(0xA1, 0x01); - send(0x21, 0x0); - send(0xA1, 0x0); + send_b(0x20, 0x11); + send_b(0xA0, 0x11); + send_b(0x21, 0x20); + send_b(0xA1, 0x28); + send_b(0x21, 0x04); + send_b(0xA1, 0x02); + send_b(0x21, 0x01); + send_b(0xA1, 0x01); + send_b(0x21, 0x0); + send_b(0xA1, 0x0); } // Map ISRs to the correct entries in the IDT @@ -101,9 +101,9 @@ void irq_handler(struct regs *r) { // Send end of interrupt to second (slave) IRQ controller if (r->int_no >= 40) { - send(0xA0, 0x20); + send_b(0xA0, 0x20); } // Send end of interrupt to master interrupt controller - send(0x20, 0x20); + send_b(0x20, 0x20); } -- cgit v1.2.3