diff options
| author | 2015-02-11 10:49:48 -0500 | |
|---|---|---|
| committer | 2015-02-11 10:49:55 -0500 | |
| commit | c94c41f95ac5e465671cd3d1865bcd5b03e98d65 (patch) | |
| tree | 5a3675b5c8e70b316193761a0b27093b255352d2 /src/core/arm/dyncom | |
| parent | arm: Change some more constants into enums (diff) | |
| download | yuzu-c94c41f95ac5e465671cd3d1865bcd5b03e98d65.tar.gz yuzu-c94c41f95ac5e465671cd3d1865bcd5b03e98d65.tar.xz yuzu-c94c41f95ac5e465671cd3d1865bcd5b03e98d65.zip | |
arm: Get rid of some magic constants. Specify proper ARM mode.
Initially, we were starting the emulator in USER26MODE, which is incorrect, this should be USER32MODE.
Diffstat (limited to 'src/core/arm/dyncom')
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom.cpp b/src/core/arm/dyncom/arm_dyncom.cpp index 68fddc94f..1977112dd 100644 --- a/src/core/arm/dyncom/arm_dyncom.cpp +++ b/src/core/arm/dyncom/arm_dyncom.cpp | |||
| @@ -23,7 +23,7 @@ ARM_DynCom::ARM_DynCom() { | |||
| 23 | 23 | ||
| 24 | ARMul_NewState((ARMul_State*)state.get()); | 24 | ARMul_NewState((ARMul_State*)state.get()); |
| 25 | 25 | ||
| 26 | state->abort_model = 0; | 26 | state->abort_model = ABORT_BASE_RESTORED; |
| 27 | state->cpu = (cpu_config_t*)&s_arm11_cpu_info; | 27 | state->cpu = (cpu_config_t*)&s_arm11_cpu_info; |
| 28 | state->bigendSig = LOW; | 28 | state->bigendSig = LOW; |
| 29 | 29 | ||
| @@ -34,7 +34,7 @@ ARM_DynCom::ARM_DynCom() { | |||
| 34 | ARMul_CoProInit(state.get()); | 34 | ARMul_CoProInit(state.get()); |
| 35 | ARMul_Reset(state.get()); | 35 | ARMul_Reset(state.get()); |
| 36 | state->NextInstr = RESUME; // NOTE: This will be overwritten by LoadContext | 36 | state->NextInstr = RESUME; // NOTE: This will be overwritten by LoadContext |
| 37 | state->Emulate = 3; | 37 | state->Emulate = RUN; |
| 38 | 38 | ||
| 39 | state->Reg[15] = 0x00000000; | 39 | state->Reg[15] = 0x00000000; |
| 40 | state->Reg[13] = 0x10000000; // Set stack pointer to the top of the stack | 40 | state->Reg[13] = 0x10000000; // Set stack pointer to the top of the stack |