diff options
author | Lioncash <mathew1800@gmail.com> | 2015-07-26 03:55:52 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-07-26 04:10:54 +0200 |
commit | 03213f893e7f2cbd692144334ac72d9138fd5e70 (patch) | |
tree | d959d1751d99a6f5307b45d04e46c19c53d5efc2 /src/core/arm/dyncom/arm_dyncom.cpp | |
parent | dyncom: Remove unnecessary abort-related cruft (diff) | |
download | yuzu-03213f893e7f2cbd692144334ac72d9138fd5e70.tar yuzu-03213f893e7f2cbd692144334ac72d9138fd5e70.tar.gz yuzu-03213f893e7f2cbd692144334ac72d9138fd5e70.tar.bz2 yuzu-03213f893e7f2cbd692144334ac72d9138fd5e70.tar.lz yuzu-03213f893e7f2cbd692144334ac72d9138fd5e70.tar.xz yuzu-03213f893e7f2cbd692144334ac72d9138fd5e70.tar.zst yuzu-03213f893e7f2cbd692144334ac72d9138fd5e70.zip |
Diffstat (limited to 'src/core/arm/dyncom/arm_dyncom.cpp')
-rw-r--r-- | src/core/arm/dyncom/arm_dyncom.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom.cpp b/src/core/arm/dyncom/arm_dyncom.cpp index 8d4a7dd98..a51a3acf8 100644 --- a/src/core/arm/dyncom/arm_dyncom.cpp +++ b/src/core/arm/dyncom/arm_dyncom.cpp @@ -20,15 +20,8 @@ ARM_DynCom::ARM_DynCom(PrivilegeMode initial_mode) { state = Common::make_unique<ARMul_State>(); - ARMul_NewState(state.get()); - ARMul_SelectProcessor(state.get(), ARM_v6_Prop | ARM_v5_Prop | ARM_v5e_Prop); - - state->bigendSig = LOW; - state->NirqSig = HIGH; - // Reset the core to initial state ARMul_Reset(state.get()); - state->Emulate = RUN; // Switch to the desired privilege mode. switch_mode(state.get(), initial_mode); |