SConscript (9966:5e8970397ab7) SConscript (10066:06a33d872798)
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

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

61Source('physical.cc')
62Source('simple_dram.cc')
63
64if env['TARGET_ISA'] != 'null':
65 Source('fs_translating_port_proxy.cc')
66 Source('se_translating_port_proxy.cc')
67 Source('page_table.cc')
68
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

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

61Source('physical.cc')
62Source('simple_dram.cc')
63
64if env['TARGET_ISA'] != 'null':
65 Source('fs_translating_port_proxy.cc')
66 Source('se_translating_port_proxy.cc')
67 Source('page_table.cc')
68
69 if env['HAVE_DRAMSIM']:
70 SimObject('DRAMSim2.py')
71 Source('dramsim2_wrapper.cc')
72 Source('dramsim2.cc')
73
69DebugFlag('BaseBus')
70DebugFlag('BusAddrRanges')
71DebugFlag('CoherentBus')
72DebugFlag('NoncoherentBus')
73CompoundFlag('Bus', ['BaseBus', 'BusAddrRanges', 'CoherentBus',
74 'NoncoherentBus'])
75
76DebugFlag('Bridge')
77DebugFlag('CommMonitor')
78DebugFlag('DRAM')
79DebugFlag('LLSC')
80DebugFlag('MMU')
81DebugFlag('MemoryAccess')
82DebugFlag('PacketQueue')
83
74DebugFlag('BaseBus')
75DebugFlag('BusAddrRanges')
76DebugFlag('CoherentBus')
77DebugFlag('NoncoherentBus')
78CompoundFlag('Bus', ['BaseBus', 'BusAddrRanges', 'CoherentBus',
79 'NoncoherentBus'])
80
81DebugFlag('Bridge')
82DebugFlag('CommMonitor')
83DebugFlag('DRAM')
84DebugFlag('LLSC')
85DebugFlag('MMU')
86DebugFlag('MemoryAccess')
87DebugFlag('PacketQueue')
88
89DebugFlag("DRAMSim2")
90
84DebugFlag('ProtocolTrace')
85DebugFlag('RubyCache')
86DebugFlag('RubyCacheTrace')
87DebugFlag('RubyDma')
88DebugFlag('RubyGenerated')
89DebugFlag('RubyMemory')
90DebugFlag('RubyNetwork')
91DebugFlag('RubyPort')

--- 13 unchanged lines hidden ---
91DebugFlag('ProtocolTrace')
92DebugFlag('RubyCache')
93DebugFlag('RubyCacheTrace')
94DebugFlag('RubyDma')
95DebugFlag('RubyGenerated')
96DebugFlag('RubyMemory')
97DebugFlag('RubyNetwork')
98DebugFlag('RubyPort')

--- 13 unchanged lines hidden ---