aboutsummaryrefslogtreecommitdiff
path: root/source/globals.c
diff options
context:
space:
mode:
authorneonloop2022-02-09 07:15:14 +0000
committerneonloop2022-02-09 07:15:14 +0000
commitce34e879e348cecd4e21329be5974cc4162fa6c4 (patch)
tree6bc241b726fc554a31d778642f45a2d1ea2309b4 /source/globals.c
parent874c431fdaff24413886416ed3ffa3455681ac01 (diff)
downloadsnes9x2005-ce34e879e348cecd4e21329be5974cc4162fa6c4.tar.gz
snes9x2005-ce34e879e348cecd4e21329be5974cc4162fa6c4.tar.bz2
snes9x2005-ce34e879e348cecd4e21329be5974cc4162fa6c4.zip
Adds experimental ARM dynarecdynarec
Supports ARMv5 and higher, enable with USE_DYNAREC Makefile variable
Diffstat (limited to 'source/globals.c')
-rw-r--r--source/globals.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/globals.c b/source/globals.c
index f7cdb85..3ccbd96 100644
--- a/source/globals.c
+++ b/source/globals.c
@@ -16,8 +16,10 @@
char String[513];
+#ifndef USE_DYNAREC
SICPU ICPU;
SCPUState CPU;
+#endif
#ifndef USE_BLARGG_APU
SAPU APU;
@@ -35,9 +37,11 @@ SnesModel* Model = &M1SNES;
int32_t OpAddress = 0;
+#ifndef USE_DYNAREC
CMemory Memory;
uint8_t OpenBus = 0;
+#endif
FxInit_s SuperFX;