Organizing files

This commit is contained in:
Remnants of Forgotten Disney
2024-03-19 13:52:23 -05:00
parent 22fc6ee9d2
commit 53e7748d48
41 changed files with 32 additions and 490 deletions

View File

@@ -1,18 +0,0 @@
#include "interrupt.h"
#include "libugba/include/ugba.h"
void interrupt_init(void) {
IRQ_Init();
}
void interrupt_set_handler(interrupt_index index, interrupt_vector function) {
IRQ_SetHandler((irq_index)index, function);
}
void interrupt_enable(interrupt_index index) {
IRQ_Enable((irq_index)index);
}
void interrupt_disable(interrupt_index index) {
IRQ_Disable((irq_index)index);
}