fs.py (11150:a8a64cca231b) fs.py (11183:276ad9121192)
1# Copyright (c) 2010-2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 201 unchanged lines hidden (view full) ---

210 test_sys.cpu[i].fastmem = True
211 if options.simpoint_profile:
212 test_sys.cpu[i].addSimPointProbe(options.simpoint_interval)
213 if options.checker:
214 test_sys.cpu[i].addCheckerCpu()
215 test_sys.cpu[i].createThreads()
216
217 CacheConfig.config_cache(options, test_sys)
1# Copyright (c) 2010-2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 201 unchanged lines hidden (view full) ---

210 test_sys.cpu[i].fastmem = True
211 if options.simpoint_profile:
212 test_sys.cpu[i].addSimPointProbe(options.simpoint_interval)
213 if options.checker:
214 test_sys.cpu[i].addCheckerCpu()
215 test_sys.cpu[i].createThreads()
216
217 CacheConfig.config_cache(options, test_sys)
218
218 MemConfig.config_mem(options, test_sys)
219
220 return test_sys
221
222def build_drive_system(np):
223 # driver system CPU is always simple, so is the memory
224 # Note this is an assignment of a class, not an instance.
225 DriveCPUClass = AtomicSimpleCPU

--- 119 unchanged lines hidden ---
219 MemConfig.config_mem(options, test_sys)
220
221 return test_sys
222
223def build_drive_system(np):
224 # driver system CPU is always simple, so is the memory
225 # Note this is an assignment of a class, not an instance.
226 DriveCPUClass = AtomicSimpleCPU

--- 119 unchanged lines hidden ---