add default range to PhysicalMemory
authorAli Saidi <saidi@eecs.umich.edu>
Thu, 17 Aug 2006 22:46:43 +0000 (18:46 -0400)
committerAli Saidi <saidi@eecs.umich.edu>
Thu, 17 Aug 2006 22:46:43 +0000 (18:46 -0400)
--HG--
extra : convert_revision : 0a622ab0f0f7653d28d4ed3dd27113ae2bc82cae

src/python/m5/objects/PhysicalMemory.py

index f4818763fd25278840993f9519d78b17d852dd75..bc427aa88ee22a867fb76efc171c07512e9ceada 100644 (file)
@@ -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")