diff options
Diffstat (limited to 'tests/configs/o3-timing-ruby.py')
-rw-r--r-- | tests/configs/o3-timing-ruby.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/configs/o3-timing-ruby.py b/tests/configs/o3-timing-ruby.py index 14b0ff1ab..0bdb73445 100644 --- a/tests/configs/o3-timing-ruby.py +++ b/tests/configs/o3-timing-ruby.py @@ -40,10 +40,10 @@ cpu.clock = '2GHz' system = System(cpu = cpu, physmem = ruby_memory, membus = Bus()) -system.physmem.port = system.membus.port +system.physmem.port = system.membus.master cpu.connectAllPorts(system.membus) # Connect the system port for loading of binaries etc -system.system_port = system.membus.port +system.system_port = system.membus.slave root = Root(full_system = False, system = system) |