Update irq.h

add implementation for irq handles to header
This commit is contained in:
2025-11-10 05:49:36 -08:00
committed by GitHub
parent 6dbd08c808
commit 48fdb348ca

View File

@@ -1,6 +1,8 @@
#ifndef IRQ_H
#define IRQ_H
void irq_init();
void irq_remap(void);
void irq_install(void);
void irq_handler(uint32_t int_num);
#endif // IRQ_H
#endif