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.
This commit is contained in:
parent
91e74beee6
commit
9d9b71e485
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ else:
|
|||
|
||||
# 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')
|
||||
|
|
Loading…
Reference in a new issue