mirror of
https://github.com/Gericom/GBARunner3.git
synced 2025-06-19 03:35:32 -04:00
18 lines
333 B
C
18 lines
333 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern u32 gIrqYieldingEnabled;
|
|
|
|
extern void vm_enableNestedIrqs(void);
|
|
extern void vm_disableNestedIrqs(void);
|
|
extern bool vm_yieldGbaIrqs(void);
|
|
extern bool vm_disableIrqYielding(void);
|
|
extern void vm_restoreIrqYielding(bool isIrqYieldingEnabled);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|