add default range to PhysicalMemory

--HG--
extra : convert_revision : 0a622ab0f0f7653d28d4ed3dd27113ae2bc82cae
This commit is contained in:
Ali Saidi 2006-08-17 18:46:43 -04:00
parent 2118b2faff
commit a3bf5f1953

View 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")