mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-11-22 08:35:27 -08:00
- Makefile: fix linker script path - irq.c: `irqN()` stubs - irq.h: fix missing header - isr.h/isr.c extern `interrupt_handlers` - utils.c: remove duplicate `memcmp`
11 lines
139 B
C
11 lines
139 B
C
#ifndef IRQ_H
|
|
#define IRQ_H
|
|
|
|
#include "types.h"
|
|
|
|
void irq_remap(void);
|
|
void irq_install(void);
|
|
void irq_handler(uint32_t int_num);
|
|
|
|
#endif
|