Deleted Added
sdiff udiff text old ( 11234:c273990ed9bf ) new ( 11238:627dd43a5846 )
full compact
1# Copyright (c) 2009, 2012-2013, 2015 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

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

35#
36# Authors: Ali Saidi
37
38from m5.params import *
39
40from System import System
41
42class ArmMachineType(Enum):
43 map = {'RealView_EB' : 827,
44 'RealView_PBX' : 1901,
45 'VExpress_EMM' : 2272,
46 'VExpress_EMM64' : 2272}
47
48class ArmSystem(System):
49 type = 'ArmSystem'
50 cxx_header = "arch/arm/system.hh"
51 load_addr_mask = 0xffffffff
52 multi_proc = Param.Bool(True, "Multiprocessor system?")
53 boot_loader = VectorParam.String([],
54 "File that contains the boot loader code. Zero or more files may be "

--- 46 unchanged lines hidden ---