Bugfixes and UDI Updates
[tpg/acess2.git] / Kernel / arch / x86 / irq.c
index 586768e..c9fa726 100644 (file)
@@ -2,7 +2,7 @@
  * AcessOS Microkernel Version
  * irq.c
  */
-#include <common.h>
+#include <acess.h>
 
 // === CONSTANTS ===
 #define        MAX_CALLBACKS_PER_IRQ   4
@@ -33,9 +33,11 @@ void IRQ_Handler(tRegs *Regs)
                        gIRQ_Handlers[Regs->int_num][i](Regs->int_num);
        }
        
+       //Log(" IRQ_Handler: Resetting");
        if(Regs->int_num >= 8)
                outb(0xA0, 0x20);       // ACK IRQ (Secondary PIC)
        outb(0x20, 0x20);       // ACK IRQ
+       //Log("IRQ_Handler: RETURN");
 }
 
 /**

UCC git Repository :: git.ucc.asn.au