diff options
Diffstat (limited to 'configs')
-rw-r--r-- | configs/example/fs.py | 4 | ||||
-rw-r--r-- | configs/example/se.py | 5 |
2 files changed, 1 insertions, 8 deletions
diff --git a/configs/example/fs.py b/configs/example/fs.py index 76b62a066..26089aa16 100644 --- a/configs/example/fs.py +++ b/configs/example/fs.py @@ -137,13 +137,11 @@ for i in xrange(np): test_sys.cpu[i].addPrivateSplitL1Caches(MyCache(size = '32kB'), MyCache(size = '64kB')) test_sys.cpu[i].connectMemPorts(test_sys.membus) - test_sys.cpu[i].mem = test_sys.physmem if len(bm) == 2: drive_sys = makeLinuxAlphaSystem(drive_mem_mode, bm[1]) drive_sys.cpu = DriveCPUClass(cpu_id=0) drive_sys.cpu.connectMemPorts(drive_sys.membus) - drive_sys.cpu.mem = drive_sys.physmem root = makeDualRoot(test_sys, drive_sys, options.etherdump) elif len(bm) == 1: root = Root(clock = '1THz', system = test_sys) @@ -163,8 +161,6 @@ if options.standard_switch: switch_cpus[i].addPrivateSplitL1Caches(MyCache(size = '32kB'), MyCache(size = '64kB')) - switch_cpus[i].mem = test_sys.physmem - switch_cpus1[i].mem = test_sys.physmem switch_cpus[i].connectMemPorts(test_sys.membus) root.switch_cpus = switch_cpus root.switch_cpus1 = switch_cpus1 diff --git a/configs/example/se.py b/configs/example/se.py index 2e63e27da..7261aeb34 100644 --- a/configs/example/se.py +++ b/configs/example/se.py @@ -39,7 +39,7 @@ parser = optparse.OptionParser() # Benchmark options parser.add_option("-c", "--cmd", - default="../../tests/test-progs/hello/bin/alpha/linux/hello", + default="../tests/test-progs/hello/bin/alpha/linux/hello", help="The binary to run in syscall emulation mode.") parser.add_option("-o", "--options", default="", help="The options to pass to the binary, use \" \" around the entire\ @@ -131,7 +131,6 @@ system = System(cpu = cpu, membus = Bus()) system.physmem.port = system.membus.port system.cpu.connectMemPorts(system.membus) -system.cpu.mem = system.physmem system.cpu.clock = '2GHz' if options.caches and not options.standard_switch: system.cpu.addPrivateSplitL1Caches(MyCache(size = '32kB'), @@ -155,8 +154,6 @@ if options.standard_switch: switch_cpu.workload = process switch_cpu1.workload = process - switch_cpu.mem = system.physmem - switch_cpu1.mem = system.physmem switch_cpu.connectMemPorts(system.membus) root.switch_cpu = switch_cpu root.switch_cpu1 = switch_cpu1 |