summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-03-29 17:40:09 -0500
committerGabe Black <gblack@eecs.umich.edu>2006-03-29 17:40:09 -0500
commit2177d822ce1eecffb685f13468412c99b1e59ecd (patch)
tree4ae56528a80dcffacda85b6e4a1c5602c6f19652 /configs
parent1e4e989b8396b9f4f322fb27bbfa1cf9e2007334 (diff)
parent3dcb589ea46290ecfe2c2e54ebf2ba8921a932ed (diff)
downloadgem5-2177d822ce1eecffb685f13468412c99b1e59ecd.tar.xz
Merge m5.eecs.umich.edu:/bk/newmem
into ewok.(none):/home/gblack/m5/newmem --HG-- extra : convert_revision : 7866241cf43416636cbd6a3a4f6eeda561ed2e27
Diffstat (limited to 'configs')
-rw-r--r--configs/test/test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/configs/test/test.py b/configs/test/test.py
index 098bf017d..695d84b73 100644
--- a/configs/test/test.py
+++ b/configs/test/test.py
@@ -5,7 +5,8 @@ class HelloWorld(AlphaLiveProcess):
cmd = 'hello'
magicbus = Bus()
-mem = PhysicalMemory(bus=magicbus)
+mem = PhysicalMemory()
cpu = SimpleCPU(workload=HelloWorld(), mem=magicbus)
system = System(physmem=mem, cpu=cpu)
+system.c1 = Connector(side_a=mem, side_b=magicbus)
root = Root(system=system)