SConscript revision 10405
112326Sar4jc@virginia.edu# -*- mode:python -*- 212326Sar4jc@virginia.edu 312326Sar4jc@virginia.edu# Copyright (c) 2004-2005 The Regents of The University of Michigan 412326Sar4jc@virginia.edu# All rights reserved. 512326Sar4jc@virginia.edu# 612326Sar4jc@virginia.edu# Redistribution and use in source and binary forms, with or without 712326Sar4jc@virginia.edu# modification, are permitted provided that the following conditions are 812326Sar4jc@virginia.edu# met: redistributions of source code must retain the above copyright 912326Sar4jc@virginia.edu# notice, this list of conditions and the following disclaimer; 1012326Sar4jc@virginia.edu# redistributions in binary form must reproduce the above copyright 1112326Sar4jc@virginia.edu# notice, this list of conditions and the following disclaimer in the 1212326Sar4jc@virginia.edu# documentation and/or other materials provided with the distribution; 1312326Sar4jc@virginia.edu# neither the name of the copyright holders nor the names of its 1412326Sar4jc@virginia.edu# contributors may be used to endorse or promote products derived from 1512326Sar4jc@virginia.edu# this software without specific prior written permission. 1612326Sar4jc@virginia.edu# 1712326Sar4jc@virginia.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 1812326Sar4jc@virginia.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 1912326Sar4jc@virginia.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 2012326Sar4jc@virginia.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 2112326Sar4jc@virginia.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 2212326Sar4jc@virginia.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 2312326Sar4jc@virginia.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 2412326Sar4jc@virginia.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 2512326Sar4jc@virginia.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 2612326Sar4jc@virginia.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 2712326Sar4jc@virginia.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 2812326Sar4jc@virginia.edu# 2912326Sar4jc@virginia.edu# Authors: Gabe Black 3012309Sar4jc@virginia.edu# Steve Reinhardt 3112309Sar4jc@virginia.edu 3212309Sar4jc@virginia.eduImport('*') 3312323Sar4jc@virginia.edu 3412322Sar4jc@virginia.eduif env['TARGET_ISA'] == 'alpha': 3512320Sar4jc@virginia.edu Source('decoder.cc') 3612309Sar4jc@virginia.edu Source('ev5.cc') 37 Source('faults.cc') 38 Source('freebsd/system.cc') 39 Source('idle_event.cc') 40 Source('interrupts.cc') 41 Source('ipr.cc') 42 Source('isa.cc') 43 Source('kernel_stats.cc') 44 Source('linux/linux.cc') 45 Source('linux/process.cc') 46 Source('linux/system.cc') 47 Source('osfpal.cc') 48 Source('pagetable.cc') 49 Source('process.cc') 50 Source('regredir.cc') 51 Source('remote_gdb.cc') 52 Source('stacktrace.cc') 53 Source('system.cc') 54 Source('tlb.cc') 55 Source('tru64/process.cc') 56 Source('tru64/system.cc') 57 Source('tru64/tru64.cc') 58 Source('utility.cc') 59 Source('vtophys.cc') 60 61 SimObject('AlphaInterrupts.py') 62 SimObject('AlphaISA.py') 63 SimObject('AlphaSystem.py') 64 SimObject('AlphaTLB.py') 65 66 # Add in files generated by the ISA description. 67 env.ISADesc('isa/main.isa') 68