summaryrefslogtreecommitdiff
path: root/src/core/arm/interpreter/armmmu.h
diff options
context:
space:
mode:
authorGravatar bunnei2014-05-15 23:39:06 -0400
committerGravatar bunnei2014-05-15 23:39:06 -0400
commit9a642caee770db2632f4daa842b10801b47ffbfc (patch)
tree5a1c63014d08d7200bc69c96549c49ba75553f2d /src/core/arm/interpreter/armmmu.h
parentfixed armmmu imports (diff)
downloadyuzu-9a642caee770db2632f4daa842b10801b47ffbfc.tar.gz
yuzu-9a642caee770db2632f4daa842b10801b47ffbfc.tar.xz
yuzu-9a642caee770db2632f4daa842b10801b47ffbfc.zip
added missing skyeye mmu code
Diffstat (limited to 'src/core/arm/interpreter/armmmu.h')
-rw-r--r--src/core/arm/interpreter/armmmu.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/core/arm/interpreter/armmmu.h b/src/core/arm/interpreter/armmmu.h
index 2ceaa7c64..818108c9c 100644
--- a/src/core/arm/interpreter/armmmu.h
+++ b/src/core/arm/interpreter/armmmu.h
@@ -178,12 +178,12 @@ typedef struct mmu_ops_s
178#include "core/arm/interpreter/mmu/cache.h" 178#include "core/arm/interpreter/mmu/cache.h"
179 179
180/*special process mmu.h*/ 180/*special process mmu.h*/
181//#include "core/arm/mmu/sa_mmu.h" 181#include "core/arm/interpreter/mmu/sa_mmu.h"
182//#include "core/arm/mmu/arm7100_mmu.h" 182//#include "core/arm/interpreter/mmu/arm7100_mmu.h"
183//#include "core/arm/mmu/arm920t_mmu.h" 183//#include "core/arm/interpreter/mmu/arm920t_mmu.h"
184//#include "core/arm/mmu/arm926ejs_mmu.h" 184//#include "core/arm/interpreter/mmu/arm926ejs_mmu.h"
185#include "core/arm/interpreter/mmu/arm1176jzf_s_mmu.h" 185#include "core/arm/interpreter/mmu/arm1176jzf_s_mmu.h"
186//#include "core/arm/mmu/cortex_a9_mmu.h" 186//#include "core/arm/interpreter/mmu/cortex_a9_mmu.h"
187 187
188typedef struct mmu_state_t 188typedef struct mmu_state_t
189{ 189{
@@ -213,13 +213,13 @@ typedef struct mmu_state_t
213 ARMword copro_access; // 15 213 ARMword copro_access; // 15
214 214
215 mmu_ops_t ops; 215 mmu_ops_t ops;
216 //union 216 union
217 //{ 217 {
218 //sa_mmu_t sa_mmu; 218 sa_mmu_t sa_mmu;
219 //arm7100_mmu_t arm7100_mmu; 219 //arm7100_mmu_t arm7100_mmu;
220 //arm920t_mmu_t arm920t_mmu; 220 //arm920t_mmu_t arm920t_mmu;
221 //arm926ejs_mmu_t arm926ejs_mmu; 221 //arm926ejs_mmu_t arm926ejs_mmu;
222 //} u; 222 } u;
223} mmu_state_t; 223} mmu_state_t;
224 224
225int mmu_init (ARMul_State * state); 225int mmu_init (ARMul_State * state);