From: Steve Reinhardt Date: Mon, 21 Aug 2006 16:31:59 +0000 (-0400) Subject: fs.py: X-Git-Tag: m5_2.0_beta1_patch1~11 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=21b21c63b02456276ebf3b49d61dc42156a20b8e;p=gem5.git fs.py: Add temporary cpu.mem parameter settings. configs/example/fs.py: Add temporary cpu.mem parameter settings. --HG-- extra : convert_revision : d7c2fcd8df8dc809b0511485877b2a85769aaf43 --- diff --git a/configs/example/fs.py b/configs/example/fs.py index b26d31040..312a96d38 100644 --- a/configs/example/fs.py +++ b/configs/example/fs.py @@ -90,15 +90,18 @@ if len(bm) == 2: s1 = makeLinuxAlphaSystem(mem_mode, bm[0]) s1.cpu = cpu cpu.connectMemPorts(s1.membus) + cpu.mem = s1.physmem s2 = makeLinuxAlphaSystem(mem_mode, bm[1]) s2.cpu = cpu2 cpu2.connectMemPorts(s2.membus) + cpu2.mem = s2.physmem root = makeDualRoot(s1, s2, options.etherdump) elif len(bm) == 1: root = Root(clock = '1THz', system = makeLinuxAlphaSystem(mem_mode, bm[0])) root.system.cpu = cpu cpu.connectMemPorts(root.system.membus) + cpu.mem = root.system.physmem else: print "Error I don't know how to create more than 2 systems." sys.exit(1)