From 2f6129bfd54b495cf6b22ee0af2fddd794217532 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sun, 30 May 2021 18:56:00 +0200 Subject: [DYNAREC] Added CC opcode --- src/dynarec/dynarec_arm64_00.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/dynarec/dynarec_arm64_00.c b/src/dynarec/dynarec_arm64_00.c index ddd5ab2e..be34a6a1 100755 --- a/src/dynarec/dynarec_arm64_00.c +++ b/src/dynarec/dynarec_arm64_00.c @@ -1561,12 +1561,12 @@ uintptr_t dynarec64_00(dynarec_arm_t* dyn, uintptr_t addr, uintptr_t ip, int nin jump_to_epilog(dyn, 0, xRIP, ninst); } } else { - #if 0 + #if 1 INST_NAME("INT 3"); // check if TRAP signal is handled LDRx_U12(x1, xEmu, offsetof(x64emu_t, context)); MOV32w(x2, offsetof(box64context_t, signals[SIGTRAP])); - LDRx_REG_LSL3(x3, x1, x2); + LDRx_REG(x3, x1, x2); CMPSx_U12(x3, 0); B_NEXT(cNE); MOV32w(x1, SIGTRAP); -- cgit 1.4.1