From: Ron Dreslinski Date: Mon, 10 Jul 2006 16:07:21 +0000 (-0400) Subject: Update FS configs to use cpu connectors for ports X-Git-Tag: m5_2.0_beta1~36^2~5^2~3 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aef232a942935e01c26522c20cc7fb3609075a7d;p=gem5.git Update FS configs to use cpu connectors for ports --HG-- extra : convert_revision : 1e2e503401f92c1f30e2e487d7aeed1c7c5b7ee4 --- diff --git a/configs/test/fs.py b/configs/test/fs.py index e0dd38e41..cd894ab73 100644 --- a/configs/test/fs.py +++ b/configs/test/fs.py @@ -190,6 +190,8 @@ class MyLinuxAlphaSystem(LinuxAlphaSystem): else: cpu = AtomicSimpleCPU() cpu.mem = magicbus2 + cpu.icache_port = magicbus2.port + cpu.dcache_port = magicbus2.port cpu.itb = AlphaITB() cpu.dtb = AlphaDTB() sim_console = SimConsole(listener=ConsoleListener(port=3456))