diff options
Diffstat (limited to 'tests/configs/inorder-timing.py')
-rw-r--r-- | tests/configs/inorder-timing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/configs/inorder-timing.py b/tests/configs/inorder-timing.py index 2a87cb663..dcef25be8 100644 --- a/tests/configs/inorder-timing.py +++ b/tests/configs/inorder-timing.py @@ -50,8 +50,8 @@ cpu.clock = '2GHz' system = System(cpu = cpu, 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 cpu.connectAllPorts(system.membus) root = Root(full_system = False, system = system) |