8 lines
165 B
C
8 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);
|