projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2118b2f
)
add default range to PhysicalMemory
author
Ali Saidi
<saidi@eecs.umich.edu>
Thu, 17 Aug 2006 22:46:43 +0000
(18:46 -0400)
committer
Ali 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
patch
|
blob
|
history
diff --git
a/src/python/m5/objects/PhysicalMemory.py
b/src/python/m5/objects/PhysicalMemory.py
index f4818763fd25278840993f9519d78b17d852dd75..bc427aa88ee22a867fb76efc171c07512e9ceada 100644
(file)
--- 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")