From 38e9e650b7e2d38eae73a8cce75f8f124075f2b1 Mon Sep 17 00:00:00 2001 From: Braiden Vasco Date: Fri, 3 Nov 2017 03:25:43 +0000 Subject: [PATCH] Add TODOs --- arch/hwint.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/hwint.c b/arch/hwint.c index 8fc25bd..a184e67 100644 --- a/arch/hwint.c +++ b/arch/hwint.c @@ -41,11 +41,11 @@ void hwint_handler(struct IsrRegisters regs) if (regs.int_no >= 40) { // TODO: hardcoded // Send reset signal to slave - outb(0xA0, 0x20); + outb(0xA0, 0x20); // TODO: hardcoded } // Send reset signal to master - outb(0x20, 0x20); + outb(0x20, 0x20); // TODO: hardcoded const unsigned char hwint_no = regs.int_no - INT_HWINT_FIRST;