projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
72eb4f5
)
Add missing cpu mem param to example/se.py.
author
Steve Reinhardt
<stever@eecs.umich.edu>
Tue, 29 Aug 2006 21:14:29 +0000
(14:14 -0700)
committer
Steve Reinhardt
<stever@eecs.umich.edu>
Tue, 29 Aug 2006 21:14:29 +0000
(14:14 -0700)
configs/example/se.py:
Add missing cpu mem param.
--HG--
extra : convert_revision :
29a11b09524612f079b8998e99b8f5ee8c67c8a6
configs/example/se.py
patch
|
blob
|
history
diff --git
a/configs/example/se.py
b/configs/example/se.py
index 2bfd0f172f4512322d42f786a5617782b05e5577..de8b6c890a3df1540376a3fda351f4db7f13f96d 100644
(file)
--- a/
configs/example/se.py
+++ b/
configs/example/se.py
@@
-97,6
+97,7
@@
system = System(cpu = cpu,
membus = Bus())
system.physmem.port = system.membus.port
system.cpu.connectMemPorts(system.membus)
+system.cpu.mem = system.physmem
root = Root(system = system)