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