From ce34e879e348cecd4e21329be5974cc4162fa6c4 Mon Sep 17 00:00:00 2001 From: neonloop Date: Wed, 9 Feb 2022 07:15:14 +0000 Subject: Adds experimental ARM dynarec Supports ARMv5 and higher, enable with USE_DYNAREC Makefile variable --- source/globals.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source/globals.c') 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; -- cgit v1.2.3