summaryrefslogtreecommitdiff
path: root/configs/example/fs.py
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson@arm.com>2012-02-14 03:41:53 -0500
committerAndreas Hansson <andreas.hansson@arm.com>2012-02-14 03:41:53 -0500
commit00978170f3b42ea83280c1b8f4b1610f5e352394 (patch)
tree347650c916f5625cfc7c8920a3aca6b99f36f0d3 /configs/example/fs.py
parent0d46708dc20c438d29bd724fb7d4b54d4d2f318a (diff)
downloadgem5-00978170f3b42ea83280c1b8f4b1610f5e352394.tar.xz
MEM: Fix master/slave ports in Ruby and non-regression scripts
This patch brings the Ruby and other scripts up to date with the introduction of the master/slave ports.
Diffstat (limited to 'configs/example/fs.py')
-rw-r--r--configs/example/fs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/example/fs.py b/configs/example/fs.py
index 754a0b79b..4c2aeeefe 100644
--- a/configs/example/fs.py
+++ b/configs/example/fs.py
@@ -195,8 +195,8 @@ if len(bm) == 2:
drive_sys.kernel = binary(options.kernel)
drive_sys.iobridge = Bridge(delay='50ns', nack_delay='4ns',
ranges = [AddrRange(bm[1].mem())])
- drive_sys.iobridge.slave = drive_sys.iobus.port
- drive_sys.iobridge.master = drive_sys.membus.port
+ drive_sys.iobridge.slave = drive_sys.iobus.master
+ drive_sys.iobridge.master = drive_sys.membus.slave
drive_sys.init_param = options.init_param
root = makeDualRoot(True, test_sys, drive_sys, options.etherdump)