diff options
| author | 2014-04-10 23:26:12 -0400 | |
|---|---|---|
| committer | 2014-04-10 23:26:12 -0400 | |
| commit | 2bde8f28561ea9436d13d990f6b129a0e80a325e (patch) | |
| tree | 4d5404d320f4c737ccc6fcbed3cc5549513689f1 /src/core/arm/interpreter/armemu.cpp | |
| parent | updated logging message (diff) | |
| download | yuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.tar.gz yuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.tar.xz yuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.zip | |
base code to call a syscall from ARM11 appcore
Diffstat (limited to 'src/core/arm/interpreter/armemu.cpp')
| -rw-r--r-- | src/core/arm/interpreter/armemu.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/arm/interpreter/armemu.cpp b/src/core/arm/interpreter/armemu.cpp index 46c51fbe8..6074ff480 100644 --- a/src/core/arm/interpreter/armemu.cpp +++ b/src/core/arm/interpreter/armemu.cpp | |||
| @@ -16,6 +16,8 @@ | |||
| 16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
| 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ |
| 18 | 18 | ||
| 19 | #include "core/hle/hle.h" | ||
| 20 | |||
| 19 | #include "arm_regformat.h" | 21 | #include "arm_regformat.h" |
| 20 | #include "armdefs.h" | 22 | #include "armdefs.h" |
| 21 | #include "armemu.h" | 23 | #include "armemu.h" |
| @@ -4558,6 +4560,7 @@ ARMul_Emulate26 (ARMul_State * state) | |||
| 4558 | // ARMul_OSHandleSWI (state, BITS (0, 23)); | 4560 | // ARMul_OSHandleSWI (state, BITS (0, 23)); |
| 4559 | // break; | 4561 | // break; |
| 4560 | //} | 4562 | //} |
| 4563 | HLE::CallSyscall(instr); | ||
| 4561 | ARMul_Abort (state, ARMul_SWIV); | 4564 | ARMul_Abort (state, ARMul_SWIV); |
| 4562 | break; | 4565 | break; |
| 4563 | } | 4566 | } |