aboutsummaryrefslogtreecommitdiffstats
path: root/src/gba/gba.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gba/gba.h')
-rw-r--r--src/gba/gba.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gba/gba.h b/src/gba/gba.h
index 3f629fd..1bb3afd 100644
--- a/src/gba/gba.h
+++ b/src/gba/gba.h
@@ -534,6 +534,14 @@ void irs_set(IrqIndex idx, IrsFunc func);
534// assembly and enable interrupts. 534// assembly and enable interrupts.
535void irq_init(void); 535void irq_init(void);
536 536
537// Only should be used inside an IrsFunc to enable it being interrupted by the
538// given interrupt (nested IRS).
539static inline void
540irs_interruptible(IrqIndex idx) {
541 IRQ_ENABLE |= (1 << idx);
542 IRQ_CTRL = 1;
543}
544
537// 545//
538// BIOS function declarations. 546// BIOS function declarations.
539// 547//