SConscript revision 12295
15729SN/A# -*- mode:python -*-
25729SN/A
35729SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan
410036SAli.Saidi@ARM.com# All rights reserved.
58835SAli.Saidi@ARM.com#
610036SAli.Saidi@ARM.com# Redistribution and use in source and binary forms, with or without
77873SN/A# modification, are permitted provided that the following conditions are
87873SN/A# met: redistributions of source code must retain the above copyright
97873SN/A# notice, this list of conditions and the following disclaimer;
105729SN/A# redistributions in binary form must reproduce the above copyright
115729SN/A# notice, this list of conditions and the following disclaimer in the
125729SN/A# documentation and/or other materials provided with the distribution;
1310315Snilay@cs.wisc.edu# neither the name of the copyright holders nor the names of its
148835SAli.Saidi@ARM.com# contributors may be used to endorse or promote products derived from
159885Sstever@gmail.com# this software without specific prior written permission.
169885Sstever@gmail.com#
1710036SAli.Saidi@ARM.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
188835SAli.Saidi@ARM.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
198835SAli.Saidi@ARM.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2010315Snilay@cs.wisc.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
218835SAli.Saidi@ARM.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2210063Snilay@cs.wisc.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
239481Snilay@cs.wisc.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
249481Snilay@cs.wisc.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
258673SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2610736Snilay@cs.wisc.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
278721SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
288835SAli.Saidi@ARM.com#
298835SAli.Saidi@ARM.com# Authors: Gabe Black
307935SN/A#          Steve Reinhardt
317935SN/A
327935SN/AImport('*')
337935SN/A
347935SN/Aif env['TARGET_ISA'] == 'sparc':
357935SN/A    Source('blockmem.cc')
367935SN/A    Source('branch.cc')
378983Snate@binkert.org    Source('integer.cc')
385729SN/A    Source('mem.cc')
399885Sstever@gmail.com    Source('micro.cc')
409885Sstever@gmail.com    Source('priv.cc')
419885Sstever@gmail.com    Source('static_inst.cc')
4210315Snilay@cs.wisc.edu    Source('trap.cc')
4310036SAli.Saidi@ARM.com