summaryrefslogtreecommitdiff
path: root/src/target/arm920t.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/target/arm920t.h')
-rw-r--r--src/target/arm920t.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/target/arm920t.h b/src/target/arm920t.h
index bedf31f2..e51e651d 100644
--- a/src/target/arm920t.h
+++ b/src/target/arm920t.h
@@ -40,6 +40,20 @@ typedef struct arm920t_common_s
u32 i_fsr;
u32 d_far;
u32 i_far;
+ int preserve_cache;
} arm920t_common_t;
+typedef struct arm920t_cache_line_s
+{
+ u32 cam;
+ u32 data[8];
+} arm920t_cache_line_t;
+
+typedef struct arm920t_tlb_entry_s
+{
+ u32 cam;
+ u32 ram1;
+ u32 ram2;
+} arm920t_tlb_entry_t;
+
#endif /* ARM920T_H */