summaryrefslogtreecommitdiff
path: root/python/m5/objects/PhysicalMemory.mpy
diff options
context:
space:
mode:
Diffstat (limited to 'python/m5/objects/PhysicalMemory.mpy')
-rw-r--r--python/m5/objects/PhysicalMemory.mpy7
1 files changed, 7 insertions, 0 deletions
diff --git a/python/m5/objects/PhysicalMemory.mpy b/python/m5/objects/PhysicalMemory.mpy
new file mode 100644
index 000000000..d1e4ad4b4
--- /dev/null
+++ b/python/m5/objects/PhysicalMemory.mpy
@@ -0,0 +1,7 @@
+from FunctionalMemory import FunctionalMemory
+
+simobj PhysicalMemory(FunctionalMemory):
+ type = 'PhysicalMemory'
+ range = Param.AddrRange("Device Address")
+ file = Param.String('', "memory mapped file")
+ mmu = Param.MemoryController(Super, "Memory Controller")