summaryrefslogtreecommitdiff
path: root/src/core/arm/interpreter/arminit.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-05-16 21:54:02 -0400
committerGravatar bunnei2014-05-16 21:54:02 -0400
commita4fd257469bc06d1474a2e6e8df9dbd233ac79a5 (patch)
tree3b9d45d77897ba308d09df2567d3bead5dddbd25 /src/core/arm/interpreter/arminit.cpp
parentMerge pull request #15 from bunnei/hle-services (diff)
parentsame fix as last commit - just for vfpsingle.cpp (diff)
downloadyuzu-a4fd257469bc06d1474a2e6e8df9dbd233ac79a5.tar.gz
yuzu-a4fd257469bc06d1474a2e6e8df9dbd233ac79a5.tar.xz
yuzu-a4fd257469bc06d1474a2e6e8df9dbd233ac79a5.zip
Merge pull request #17 from bunnei/arm-vfp
ARM VFP support - integrated from SkyEye
Diffstat (limited to 'src/core/arm/interpreter/arminit.cpp')
-rw-r--r--src/core/arm/interpreter/arminit.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/arm/interpreter/arminit.cpp b/src/core/arm/interpreter/arminit.cpp
index a8aeecdea..2c771cdda 100644
--- a/src/core/arm/interpreter/arminit.cpp
+++ b/src/core/arm/interpreter/arminit.cpp
@@ -23,8 +23,8 @@
23 23
24#include <math.h> 24#include <math.h>
25 25
26#include "armdefs.h" 26#include "core/arm/interpreter/armdefs.h"
27#include "armemu.h" 27#include "core/arm/interpreter/armemu.h"
28 28
29/***************************************************************************\ 29/***************************************************************************\
30* Definitions for the emulator architecture * 30* Definitions for the emulator architecture *
@@ -271,7 +271,7 @@ below line sould be in skyeye_mach_XXX.c 's XXX_mach_init function
271 271
272 /* Only initialse the coprocessor support once we 272 /* Only initialse the coprocessor support once we
273 know what kind of chip we are dealing with. */ 273 know what kind of chip we are dealing with. */
274 //ARMul_CoProInit (state); Commented out /bunnei 274 ARMul_CoProInit (state);
275 275
276} 276}
277 277
@@ -318,7 +318,7 @@ ARMul_Reset (ARMul_State * state)
318 state->NumFcycles = 0; 318 state->NumFcycles = 0;
319 319
320 //fprintf(stderr,"armul_reset 3: state-> Cpsr 0x%x, Mode %d\n",state->Cpsr,state->Mode); 320 //fprintf(stderr,"armul_reset 3: state-> Cpsr 0x%x, Mode %d\n",state->Cpsr,state->Mode);
321 //mmu_reset (state); Commented out /bunnei 321 mmu_reset (state);
322 //fprintf(stderr,"armul_reset 4: state-> Cpsr 0x%x, Mode %d\n",state->Cpsr,state->Mode); 322 //fprintf(stderr,"armul_reset 4: state-> Cpsr 0x%x, Mode %d\n",state->Cpsr,state->Mode);
323 323
324 //mem_reset (state); /* move to memory/ram.c */ 324 //mem_reset (state); /* move to memory/ram.c */