diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-11 05:26:12 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-11 05:26:12 +0200 |
commit | 2bde8f28561ea9436d13d990f6b129a0e80a325e (patch) | |
tree | 4d5404d320f4c737ccc6fcbed3cc5549513689f1 /src/core/arm/interpreter | |
parent | updated logging message (diff) | |
download | yuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.tar yuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.tar.gz yuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.tar.bz2 yuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.tar.lz yuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.tar.xz yuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.tar.zst yuzu-2bde8f28561ea9436d13d990f6b129a0e80a325e.zip |
Diffstat (limited to 'src/core/arm/interpreter')
-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 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "core/hle/hle.h" + #include "arm_regformat.h" #include "armdefs.h" #include "armemu.h" @@ -4558,6 +4560,7 @@ ARMul_Emulate26 (ARMul_State * state) // ARMul_OSHandleSWI (state, BITS (0, 23)); // break; //} + HLE::CallSyscall(instr); ARMul_Abort (state, ARMul_SWIV); break; } |