summaryrefslogtreecommitdiff
path: root/libretro.c
diff options
context:
space:
mode:
Diffstat (limited to 'libretro.c')
-rw-r--r--libretro.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libretro.c b/libretro.c
index c753f01..7f1e299 100644
--- a/libretro.c
+++ b/libretro.c
@@ -22,6 +22,11 @@ static cothread_t main_thread;
static cothread_t cpu_thread;
int dynarec_enable;
+u32 idle_loop_target_pc = 0xFFFFFFFF;
+u32 iwram_stack_optimize = 1;
+u32 translation_gate_target_pc[MAX_TRANSLATION_GATES];
+u32 translation_gate_targets = 0;
+
void switch_to_main_thread(void)
{
co_switch(main_thread);