58217f5900
WOO HOO!
7 lines
165 B
C
7 lines
165 B
C
#pragma once
|
|
#include "isr.h"
|
|
|
|
typedef void (*IRQHandler)(Registers* regs);
|
|
|
|
void i686_IRQ_Initialize();
|
|
void i686_IRQ_RegisterHandler(int irq, IRQHandler handler);
|