[nostalgia/core/gba] Add IRQ system

This commit is contained in:
2020-06-21 11:48:18 -05:00
parent d664979868
commit 89aadfb606
8 changed files with 96 additions and 11 deletions
+8
View File
@@ -8,8 +8,16 @@
#include <nostalgia/core/core.hpp>
#include "irq.hpp"
namespace nostalgia::core {
ox::Error init(Context *ctx) {
oxReturnError(initGfx(ctx));
oxReturnError(initIrq(ctx));
return OxError(0);
}
ox::Error run(Context*) {
while (1) {
}