diff options
Diffstat (limited to 'tests/configs/simple-atomic.py')
-rw-r--r-- | tests/configs/simple-atomic.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/configs/simple-atomic.py b/tests/configs/simple-atomic.py index eb7415b8d..5e5b94f27 100644 --- a/tests/configs/simple-atomic.py +++ b/tests/configs/simple-atomic.py @@ -32,8 +32,8 @@ from m5.objects import * system = System(cpu = AtomicSimpleCPU(cpu_id=0), physmem = PhysicalMemory(), membus = Bus()) -system.system_port = system.membus.port -system.physmem.port = system.membus.port +system.system_port = system.membus.slave +system.physmem.port = system.membus.master system.cpu.connectAllPorts(system.membus) system.cpu.clock = '2GHz' |