summaryrefslogtreecommitdiff
path: root/src/core/arm/interpreter/arminit.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-05-16 22:24:34 -0400
committerGravatar bunnei2014-05-16 22:24:34 -0400
commit0b1ba2f37a71831e6c60ddce7adfb170c53b193f (patch)
tree53c185cffb4288f8d3e73b8f2b75df0789b86deb /src/core/arm/interpreter/arminit.cpp
parent- added SVC stubs for QueryMemory and GetThreadId (diff)
parentMerge pull request #17 from bunnei/arm-vfp (diff)
downloadyuzu-0b1ba2f37a71831e6c60ddce7adfb170c53b193f.tar.gz
yuzu-0b1ba2f37a71831e6c60ddce7adfb170c53b193f.tar.xz
yuzu-0b1ba2f37a71831e6c60ddce7adfb170c53b193f.zip
Merge master into threading to add support for VFP
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 */