SConscript revision 8853
12139SN/A# -*- mode:python -*-
22139SN/A
32139SN/A# Copyright (c) 2006 The Regents of The University of Michigan
42139SN/A# All rights reserved.
52139SN/A#
62139SN/A# Redistribution and use in source and binary forms, with or without
72139SN/A# modification, are permitted provided that the following conditions are
82139SN/A# met: redistributions of source code must retain the above copyright
92139SN/A# notice, this list of conditions and the following disclaimer;
102139SN/A# redistributions in binary form must reproduce the above copyright
112139SN/A# notice, this list of conditions and the following disclaimer in the
122139SN/A# documentation and/or other materials provided with the distribution;
132139SN/A# neither the name of the copyright holders nor the names of its
142139SN/A# contributors may be used to endorse or promote products derived from
152139SN/A# this software without specific prior written permission.
162139SN/A#
172139SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182139SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192139SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202139SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212139SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222139SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232139SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242139SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252139SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262139SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272139SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282665Ssaidi@eecs.umich.edu#
292665Ssaidi@eecs.umich.edu# Authors: Nathan Binkert
302139SN/A
314202Sbinkertn@umich.eduImport('*')
322139SN/A
334202Sbinkertn@umich.eduSimObject('Bridge.py')
342152SN/ASimObject('Bus.py')
352152SN/ASimObject('MemObject.py')
362139SN/A
372139SN/ASource('bridge.cc')
382139SN/ASource('bus.cc')
392139SN/ASource('mem_object.cc')
402139SN/ASource('mport.cc')
412152SN/ASource('packet.cc')
422152SN/ASource('port.cc')
432139SN/ASource('tport.cc')
442139SN/ASource('port_proxy.cc')
452139SN/ASource('fs_translating_port_proxy.cc')
464781Snate@binkert.orgSource('se_translating_port_proxy.cc')
474781Snate@binkert.org
484781Snate@binkert.orgif env['TARGET_ISA'] != 'no':
496313Sgblack@eecs.umich.edu    SimObject('PhysicalMemory.py')
504781Snate@binkert.org    Source('dram.cc')
514781Snate@binkert.org    Source('page_table.cc')
523170Sstever@eecs.umich.edu    Source('physical.cc')
535664Sgblack@eecs.umich.edu
543806Ssaidi@eecs.umich.eduDebugFlag('Bus')
556179Sksewell@umich.eduDebugFlag('BusAddrRanges')
564781Snate@binkert.orgDebugFlag('BusBridge')
574781Snate@binkert.orgDebugFlag('LLSC')
586329Sgblack@eecs.umich.eduDebugFlag('MMU')
594781Snate@binkert.orgDebugFlag('MemoryAccess')
604781Snate@binkert.org
614781Snate@binkert.orgDebugFlag('ProtocolTrace')
624781Snate@binkert.orgDebugFlag('RubyCache')
634781Snate@binkert.orgDebugFlag('RubyCacheTrace')
644781Snate@binkert.orgDebugFlag('RubyDma')
652139SN/ADebugFlag('RubyGenerated')
662139SN/ADebugFlag('RubyMemory')
673546Sgblack@eecs.umich.eduDebugFlag('RubyNetwork')
684202Sbinkertn@umich.eduDebugFlag('RubyPort')
692152SN/ADebugFlag('RubyQueue')
702152SN/ADebugFlag('RubySequencer')
712152SN/ADebugFlag('RubySlicc')
722152SN/ADebugFlag('RubySystem')
732152SN/ADebugFlag('RubyTester')
742152SN/A
752152SN/ACompoundFlag('Ruby', [ 'RubyQueue', 'RubyNetwork', 'RubyTester',
762152SN/A    'RubyGenerated', 'RubySlicc', 'RubySystem', 'RubyCache',
772152SN/A    'RubyMemory', 'RubyDma', 'RubyPort', 'RubySequencer', 'RubyCacheTrace'])
782152SN/A