diff options
Diffstat (limited to 'python/m5')
-rw-r--r-- | python/m5/objects/PhysicalMemory.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/m5/objects/PhysicalMemory.py b/python/m5/objects/PhysicalMemory.py index e59e94e9b..c59910093 100644 --- a/python/m5/objects/PhysicalMemory.py +++ b/python/m5/objects/PhysicalMemory.py @@ -5,4 +5,4 @@ class PhysicalMemory(MemObject): type = 'PhysicalMemory' range = Param.AddrRange("Device Address") file = Param.String('', "memory mapped file") - latency = Param.Latency('10ns', "latency of an access") + latency = Param.Latency(Parent.clock, "latency of an access") |