diff --git a/src/backend/Core.cpp b/src/backend/Core.cpp index d7497c50..a2f049f5 100644 --- a/src/backend/Core.cpp +++ b/src/backend/Core.cpp @@ -6,7 +6,9 @@ namespace n64 { Core::Core(CPUType cpuType) { switch (cpuType) { case Interpreted: cpu = std::make_unique(parallel); break; + #ifndef __aarch64__ case DynamicRecompiler: cpu = std::make_unique(parallel); break; + #endif default: Util::panic("Unimplemented CPU type\n"); } }