memcheck.py (11753:6aefb19ff369) memcheck.py (11837:17b37f38944a)
1# Copyright (c) 2015-2016 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

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

211cfg_file.write("TRANSITION 2 0 0.5\n")
212cfg_file.write("TRANSITION 2 1 0.5\n")
213cfg_file.close()
214
215# Make a prototype for the tester to be used throughout
216proto_tester = TrafficGen(config_file = cfg_file_name)
217
218# Set up the system along with a DRAM controller
1# Copyright (c) 2015-2016 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

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

211cfg_file.write("TRANSITION 2 0 0.5\n")
212cfg_file.write("TRANSITION 2 1 0.5\n")
213cfg_file.close()
214
215# Make a prototype for the tester to be used throughout
216proto_tester = TrafficGen(config_file = cfg_file_name)
217
218# Set up the system along with a DRAM controller
219system = System(physmem = DDR3_1600_x64())
219system = System(physmem = DDR3_1600_8x8())
220
221system.voltage_domain = VoltageDomain(voltage = '1V')
222
223system.clk_domain = SrcClockDomain(clock = options.sys_clock,
224 voltage_domain = system.voltage_domain)
225
226system.memchecker = MemChecker()
227

--- 91 unchanged lines hidden ---
220
221system.voltage_domain = VoltageDomain(voltage = '1V')
222
223system.clk_domain = SrcClockDomain(clock = options.sys_clock,
224 voltage_domain = system.voltage_domain)
225
226system.memchecker = MemChecker()
227

--- 91 unchanged lines hidden ---