SConscript revision 8335:9228e00459d4
12686Sksewell@umich.edu# -*- mode:python -*-
22686Sksewell@umich.edu
32754Sksewell@umich.edu# Copyright (c) 2006 The Regents of The University of Michigan
42706Sksewell@umich.edu# All rights reserved.
52706Sksewell@umich.edu#
62706Sksewell@umich.edu# Redistribution and use in source and binary forms, with or without
72706Sksewell@umich.edu# modification, are permitted provided that the following conditions are
82706Sksewell@umich.edu# met: redistributions of source code must retain the above copyright
92706Sksewell@umich.edu# notice, this list of conditions and the following disclaimer;
102706Sksewell@umich.edu# redistributions in binary form must reproduce the above copyright
112706Sksewell@umich.edu# notice, this list of conditions and the following disclaimer in the
122706Sksewell@umich.edu# documentation and/or other materials provided with the distribution;
132706Sksewell@umich.edu# neither the name of the copyright holders nor the names of its
142706Sksewell@umich.edu# contributors may be used to endorse or promote products derived from
152706Sksewell@umich.edu# this software without specific prior written permission.
162706Sksewell@umich.edu#
172706Sksewell@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182706Sksewell@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192706Sksewell@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202706Sksewell@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212706Sksewell@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222706Sksewell@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232706Sksewell@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242706Sksewell@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252706Sksewell@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262706Sksewell@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272706Sksewell@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282706Sksewell@umich.edu#
292706Sksewell@umich.edu# Authors: Steve Reinhardt
302706Sksewell@umich.edu#          Gabe Black
312038SN/A
322038SN/AImport('*')
332038SN/A
342038SN/Aif env['FULL_SYSTEM'] and env['TARGET_ISA'] == 'sparc':
352038SN/A    SimObject('T1000.py')
362038SN/A
372038SN/A    Source('dtod.cc')
382038SN/A    Source('iob.cc')
392038SN/A    Source('t1000.cc')
402038SN/A    Source('mm_disk.cc')
412038SN/A
422038SN/A    DebugFlag('Iob')
432038SN/A