mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-11-16 22:35:26 -08:00
9 lines
119 B
C
9 lines
119 B
C
#ifndef IRQ_H
|
|
#define IRQ_H
|
|
|
|
void irq_remap(void);
|
|
void irq_install(void);
|
|
void irq_handler(uint32_t int_num);
|
|
|
|
#endif
|