[Apple Arm] Disable JIT stuff under ARM64 for now

This commit is contained in:
SimoneN64
2025-02-09 20:53:17 +01:00
parent b819299308
commit 7d27351609
4 changed files with 18 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
#include <jit/helpers.hpp>
namespace n64 {
#ifndef __aarch64__
JIT::JIT(ParallelRDP &parallel) : regs(this), mem(regs, parallel, this) {
blockCache.resize(kUpperSize);
if (cs_open(CS_ARCH_MIPS, static_cast<cs_mode>(CS_MODE_MIPS64 | CS_MODE_BIG_ENDIAN), &disassemblerMips) !=
@@ -183,4 +184,5 @@ std::vector<u8> JIT::Serialize() {
}
void JIT::Deserialize(const std::vector<u8> &data) { memcpy(&regs, data.data(), sizeof(Registers)); }
#endif
} // namespace n64