summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2006-08-17 18:47:04 -0400
committerAli Saidi <saidi@eecs.umich.edu>2006-08-17 18:47:04 -0400
commit399c01aceb48c2bc0cc465be1df7e76139c2ca88 (patch)
tree94a9dbbf95541bdfd94939cd8e6811fe9fb5a4d6
parent4a071f3cb06fbb86c63a4a3d87f35f4a0d1861f9 (diff)
parenta3bf5f1953b05119998fb74249e44c700db4aec5 (diff)
downloadgem5-399c01aceb48c2bc0cc465be1df7e76139c2ca88.tar.xz
Merge zizzer:/bk/newmem
into zeep.pool:/z/saidi/tmp/m5.newmem --HG-- extra : convert_revision : 49289cfe8d547045dd89133db71d16318bc8510b
-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")