]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/mmu.cpp
Attempting to add sanity to memory access: Added mmu.cpp/h
[virtualjaguar] / src / mmu.cpp
diff --git a/src/mmu.cpp b/src/mmu.cpp
new file mode 100644 (file)
index 0000000..3e746d2
--- /dev/null
@@ -0,0 +1,48 @@
+//
+// mmu.cpp
+//
+// Jaguar Memory Manager Unit
+//
+// by James L. Hammons
+//
+// JLH = James L. Hammons
+//
+// WHO  WHEN        WHAT
+// ---  ----------  -----------------------------------------------------------
+// JLH  11/25/2009  Created this file. :-)
+//
+
+#include "mmu.h"
+
+void MMUWrite8(uint32 address, uint8 data, uint32 who/*= UNKNOWN*/)
+{
+}
+
+void MMUWrite16(uint32 address, uint16 data, uint32 who/*= UNKNOWN*/)
+{
+}
+
+void MMUWrite32(uint32 address, uint32 data, uint32 who/*= UNKNOWN*/)
+{
+}
+
+void MMUWrite64(uint32 address, uint64 data, uint32 who/*= UNKNOWN*/)
+{
+}
+
+uint8 MMURead8(uint32 address, uint32 who/*= UNKNOWN*/)
+{
+}
+
+uint16 MMURead16(uint32 address, uint32 who/*= UNKNOWN*/)
+{
+}
+
+uint32 MMURead32(uint32 address, uint32 who/*= UNKNOWN*/)
+{
+}
+
+uint64 MMURead64(uint32 address, uint32 who/*= UNKNOWN*/)
+{
+}
+