mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2026-01-15 10:35:20 -08:00
11 lines
140 B
C
11 lines
140 B
C
#ifndef IRQ_H
|
|
#define IRQ_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void irq_remap(void);
|
|
void irq_install(void);
|
|
void irq_handler(uint32_t int_num);
|
|
|
|
#endif
|