changeset 6ed55550d19e in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=6ed55550d19e
description:
        Configs: Fix memtest.py by moving the system port

        The memtest.py script used to connect the system port directly to the
        SimpleMemory, but the latter is now single ported. Since the system
        port is not used for anything in this particular example, a quick fix
        is to attach it to the functional bus instead.

diffstat:

 configs/example/memtest.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 8fe936e937bd -r 6ed55550d19e configs/example/memtest.py
--- a/configs/example/memtest.py        Tue Sep 25 11:49:41 2012 -0500
+++ b/configs/example/memtest.py        Thu Sep 27 03:24:21 2012 -0400
@@ -189,7 +189,7 @@
 
 # The system port is never used in the tester so merely connect it
 # to avoid problems
-root.system.system_port = root.system.physmem.port
+root.system.system_port = root.system.funcbus.slave
 
 # Not much point in this being higher than the L1 latency
 m5.ticks.setGlobalFrequency('1ns')
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to