Deleted Added
sdiff udiff text old ( 13883:f44e21d3aaa7 ) new ( 13958:1945df12e5b0 )
full compact
1# Copyright (c) 2012-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

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

235
236 if options.checker:
237 system.cpu[i].addCheckerCpu()
238
239 if options.bp_type:
240 bpClass = BPConfig.get(options.bp_type)
241 system.cpu[i].branchPred = bpClass()
242
243 system.cpu[i].createThreads()
244
245system.redirect_paths = redirect_paths(os.path.expanduser(options.chroot))
246config_filesystem(options)
247
248if options.ruby:
249 Ruby.create_system(options, False, system)
250 assert(options.num_cpus == len(system.ruby._cpu_ports))

--- 29 unchanged lines hidden ---