SConscript (10037:5cac77888310) SConscript (10196:be0e1724eb39)
1# -*- mode:python -*-
2
3# Copyright (c) 2009, 2012-2013 ARM Limited
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

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

84 SimObject('ArmSystem.py')
85 SimObject('ArmTLB.py')
86
87 DebugFlag('Arm')
88 DebugFlag('Decoder', "Instructions returned by the predecoder")
89 DebugFlag('Faults', "Trace Exceptions, interrupts, svc/swi")
90 DebugFlag('TLBVerbose')
91
1# -*- mode:python -*-
2
3# Copyright (c) 2009, 2012-2013 ARM Limited
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

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

84 SimObject('ArmSystem.py')
85 SimObject('ArmTLB.py')
86
87 DebugFlag('Arm')
88 DebugFlag('Decoder', "Instructions returned by the predecoder")
89 DebugFlag('Faults', "Trace Exceptions, interrupts, svc/swi")
90 DebugFlag('TLBVerbose')
91
92 # Add in files generated by the ISA description.
93 isa_desc_files = env.ISADesc('isa/main.isa')
94 # Only non-header files need to be compiled.
95 for f in isa_desc_files:
96 if not f.path.endswith('.hh'):
97 Source(f)
98
92 # Add files generated by the ISA description.
93 env.ISADesc('isa/main.isa')