aboutsummaryrefslogtreecommitdiff
path: root/CP15.h
diff options
context:
space:
mode:
authorStapleButter <thetotalworm@gmail.com>2016-12-03 16:13:04 +0100
committerStapleButter <thetotalworm@gmail.com>2016-12-03 16:13:04 +0100
commitf2858e1c478df4b613483648d3e8213f96bdc483 (patch)
treec3ef937625cc59b13c5b6dddb03c46e1cc80700f /CP15.h
parent53bef35cd1251c04242a2a68fe69e8af27869d2b (diff)
less amnesia! ITCM, DTCM, corresponding CP15 support
Diffstat (limited to 'CP15.h')
-rw-r--r--CP15.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/CP15.h b/CP15.h
new file mode 100644
index 0000000..c633327
--- /dev/null
+++ b/CP15.h
@@ -0,0 +1,15 @@
+
+#ifndef CP15_H
+#define CP15_H
+
+namespace CP15
+{
+
+void Reset();
+
+void Write(u32 id, u32 val);
+u32 Read(u32 id);
+
+}
+
+#endif