SConscript revision 4202
11689SN/A# -*- mode:python -*- 22325SN/A 31689SN/A# Copyright (c) 2006 The Regents of The University of Michigan 41689SN/A# All rights reserved. 51689SN/A# 61689SN/A# Redistribution and use in source and binary forms, with or without 71689SN/A# modification, are permitted provided that the following conditions are 81689SN/A# met: redistributions of source code must retain the above copyright 91689SN/A# notice, this list of conditions and the following disclaimer; 101689SN/A# redistributions in binary form must reproduce the above copyright 111689SN/A# notice, this list of conditions and the following disclaimer in the 121689SN/A# documentation and/or other materials provided with the distribution; 131689SN/A# neither the name of the copyright holders nor the names of its 141689SN/A# contributors may be used to endorse or promote products derived from 151689SN/A# this software without specific prior written permission. 161689SN/A# 171689SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 181689SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 191689SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 201689SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 211689SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 221689SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 231689SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 241689SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 251689SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 261689SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 272665Ssaidi@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 282665Ssaidi@eecs.umich.edu# 292756Sksewell@umich.edu# Authors: Nathan Binkert 301689SN/A 311689SN/AImport('*') 321858SN/A 332733Sktlim@umich.eduSource('async.cc') 341858SN/ASource('builder.cc') 354762Snate@binkert.orgSource('core.cc') 364762Snate@binkert.orgSource('debug.cc') 374762Snate@binkert.orgSource('eventq.cc') 384762Snate@binkert.orgSource('faults.cc') 394762Snate@binkert.orgSource('main.cc') 404762Snate@binkert.orgSource('param.cc') 414762Snate@binkert.orgSource('root.cc') 424762Snate@binkert.orgSource('serialize.cc') 434762Snate@binkert.orgSource('sim_events.cc') 441858SN/ASource('sim_object.cc') 452356SN/ASource('simulate.cc') 461060SN/ASource('startup.cc') 471060SN/ASource('stat_control.cc') 481060SN/ASource('system.cc') 491060SN/A 501060SN/Aif env['FULL_SYSTEM']: 512794Sktlim@umich.edu Source('pseudo_inst.cc') 522794Sktlim@umich.eduelse: 532794Sktlim@umich.edu Source('process.cc') 542794Sktlim@umich.edu Source('syscall_emul.cc') 552669Sktlim@umich.edu