forgot to disable this line on arm
This commit is contained in:
@@ -6,7 +6,9 @@ namespace n64 {
|
|||||||
Core::Core(CPUType cpuType) {
|
Core::Core(CPUType cpuType) {
|
||||||
switch (cpuType) {
|
switch (cpuType) {
|
||||||
case Interpreted: cpu = std::make_unique<Interpreter>(parallel); break;
|
case Interpreted: cpu = std::make_unique<Interpreter>(parallel); break;
|
||||||
|
#ifndef __aarch64__
|
||||||
case DynamicRecompiler: cpu = std::make_unique<JIT>(parallel); break;
|
case DynamicRecompiler: cpu = std::make_unique<JIT>(parallel); break;
|
||||||
|
#endif
|
||||||
default: Util::panic("Unimplemented CPU type\n");
|
default: Util::panic("Unimplemented CPU type\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user