diff options
author | bunnei <bunneidev@gmail.com> | 2014-08-26 23:58:03 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-08-28 17:51:49 -0400 |
commit | 304999dfebea595ea4a21082ed2ef9ea3f3d907f (patch) | |
tree | 12afac34844f348a342680441507e427f0f10441 /src/core/arm/interpreter | |
parent | fb908b939523395fd863e72453b3c8da84d8a74b (diff) |
Threading: Fix thread starting to execute first instruction correctly.
Diffstat (limited to 'src/core/arm/interpreter')
-rw-r--r-- | src/core/arm/interpreter/arm_interpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/interpreter/arm_interpreter.cpp b/src/core/arm/interpreter/arm_interpreter.cpp index d35a3ae17..0842d2f8e 100644 --- a/src/core/arm/interpreter/arm_interpreter.cpp +++ b/src/core/arm/interpreter/arm_interpreter.cpp @@ -27,7 +27,7 @@ ARM_Interpreter::ARM_Interpreter() { // Reset the core to initial state ARMul_CoProInit(state); ARMul_Reset(state); - state->NextInstr = RESUME; + state->NextInstr = RESUME; // NOTE: This will be overwritten by LoadContext state->Emulate = 3; state->pc = state->Reg[15] = 0x00000000; |