From 4973a16b34471dcb5f65a1d6c31d5a7d8c2dfd83 Mon Sep 17 00:00:00 2001 From: Ali Saidi Date: Sat, 25 Mar 2006 18:34:50 -0500 Subject: update for objects having a bus --HG-- extra : convert_revision : 96b5494b7d0b5ca702ac69cfa0bf8c4d44e1cc3b --- configs/test/test.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'configs/test') diff --git a/configs/test/test.py b/configs/test/test.py index 86a44313a..098bf017d 100644 --- a/configs/test/test.py +++ b/configs/test/test.py @@ -4,7 +4,8 @@ class HelloWorld(AlphaLiveProcess): executable = '../configs/test/hello' cmd = 'hello' -mem = PhysicalMemory() -cpu = SimpleCPU(workload=HelloWorld(), mem=mem) +magicbus = Bus() +mem = PhysicalMemory(bus=magicbus) +cpu = SimpleCPU(workload=HelloWorld(), mem=magicbus) system = System(physmem=mem, cpu=cpu) root = Root(system=system) -- cgit v1.2.3