[nostalgia/core/gba] Implement ISR

This commit is contained in:
2020-07-09 23:32:34 -05:00
parent 4f79310084
commit 22a07afa9e
4 changed files with 139 additions and 6 deletions
+14 -3
View File
@@ -11,10 +11,21 @@
#include "irq.hpp"
namespace nostalgia::core {
extern "C" {
void isr() {
REG_IF = Int_vblank;
void nostalgia_core_isr_timer0() {
}
void nostalgia_core_isr_timer1() {
}
void nostalgia_core_isr_timer2() {
}
void nostalgia_core_isr_timer3() {
}
void nostalgia_core_isr_vblank() {
}
}