From b8c50071537d72e267bb3e7a8573971c6e946b88 Mon Sep 17 00:00:00 2001 From: MerryMage Date: Sun, 3 Jun 2018 21:06:57 +0100 Subject: [PATCH] arm_dyncom_interpreter: Clear exclusive memory state after SVC call --- src/core/arm/dyncom/arm_dyncom_interpreter.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp index b8c0cb34e..9548d0e16 100644 --- a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp +++ b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp @@ -3866,6 +3866,8 @@ SWI_INST : { num_instrs >= cpu->NumInstrsToExecute ? 0 : cpu->NumInstrsToExecute - num_instrs; num_instrs = 0; Kernel::CallSVC(inst_cream->num & 0xFFFF); + // The kernel would call ERET to get here, which clears exclusive memory state. + cpu->UnsetExclusiveMemoryAddress(); } cpu->Reg[15] += cpu->GetInstructionSize();