summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2006-08-17 18:46:43 -0400
committerAli Saidi <saidi@eecs.umich.edu>2006-08-17 18:46:43 -0400
commita3bf5f1953b05119998fb74249e44c700db4aec5 (patch)
tree698d4c2d9b56e2abbce7d0f6b036c34628345b73 /src
parent2118b2faff92f62d29a015811d15f3fd138af8a5 (diff)
downloadgem5-a3bf5f1953b05119998fb74249e44c700db4aec5.tar.xz
add default range to PhysicalMemory
--HG-- extra : convert_revision : 0a622ab0f0f7653d28d4ed3dd27113ae2bc82cae
Diffstat (limited to 'src')
-rw-r--r--src/python/m5/objects/PhysicalMemory.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/m5/objects/PhysicalMemory.py b/src/python/m5/objects/PhysicalMemory.py
index f4818763f..bc427aa88 100644
--- a/src/python/m5/objects/PhysicalMemory.py
+++ b/src/python/m5/objects/PhysicalMemory.py
@@ -4,7 +4,7 @@ from MemObject import *
class PhysicalMemory(MemObject):
type = 'PhysicalMemory'
port = Port("the access port")
- range = Param.AddrRange("Device Address")
+ range = Param.AddrRange(AddrRange('128MB'), "Device Address")
file = Param.String('', "memory mapped file")
latency = Param.Latency(Parent.clock, "latency of an access")