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.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/m5/objects/PhysicalMemory.py b/python/m5/objects/PhysicalMemory.py
index f50937ee6..e59e94e9b 100644
--- a/python/m5/objects/PhysicalMemory.py
+++ b/python/m5/objects/PhysicalMemory.py
@@ -1,8 +1,8 @@
from m5 import *
-from FunctionalMemory import FunctionalMemory
+from MemObject import *
-class PhysicalMemory(FunctionalMemory):
+class PhysicalMemory(MemObject):
type = 'PhysicalMemory'
range = Param.AddrRange("Device Address")
file = Param.String('', "memory mapped file")
- mmu = Param.MemoryController(Parent.any, "Memory Controller")
+ latency = Param.Latency('10ns', "latency of an access")