summaryrefslogtreecommitdiff
path: root/cpu.c
diff options
context:
space:
mode:
authortwinaphex2014-12-10 17:06:09 +0100
committertwinaphex2014-12-10 17:06:09 +0100
commit51d78afa091d296e5545e69ed11201ee436053a1 (patch)
treede64f89c9c353493b471db18f32d10b89ba6733f /cpu.c
parent512f7f5b275ec011ff0bf406771fcbeada1caf29 (diff)
downloadpicogpsp-51d78afa091d296e5545e69ed11201ee436053a1.tar.gz
picogpsp-51d78afa091d296e5545e69ed11201ee436053a1.tar.bz2
picogpsp-51d78afa091d296e5545e69ed11201ee436053a1.zip
Add HAVE_DYNAREC ifdef
Diffstat (limited to 'cpu.c')
-rw-r--r--cpu.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/cpu.c b/cpu.c
index f1cbfaa..4c2f455 100644
--- a/cpu.c
+++ b/cpu.c
@@ -4054,6 +4054,11 @@ void raise_interrupt(irq_type irq_raised)
}
}
+#ifndef HAVE_DYNAREC
+u8 *memory_map_read [8 * 1024];
+u8 *memory_map_write[8 * 1024];
+#endif
+
void execute_arm(u32 cycles)
{
u32 pc = reg[REG_PC];