SConscript revision 5069
12381SN/A# -*- mode:python -*-
22592SN/A
32381SN/A# Copyright (c) 2006 The Regents of The University of Michigan
42381SN/A# All rights reserved.
52381SN/A#
62381SN/A# Redistribution and use in source and binary forms, with or without
72381SN/A# modification, are permitted provided that the following conditions are
82381SN/A# met: redistributions of source code must retain the above copyright
92381SN/A# notice, this list of conditions and the following disclaimer;
102381SN/A# redistributions in binary form must reproduce the above copyright
112381SN/A# notice, this list of conditions and the following disclaimer in the
122381SN/A# documentation and/or other materials provided with the distribution;
132381SN/A# neither the name of the copyright holders nor the names of its
142381SN/A# contributors may be used to endorse or promote products derived from
152381SN/A# this software without specific prior written permission.
162381SN/A#
172381SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182381SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192381SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202381SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212381SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222381SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232381SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242381SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252381SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262381SN/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#
292665Ssaidi@eecs.umich.edu# Authors: Nathan Binkert
302665Ssaidi@eecs.umich.edu
312381SN/AImport('*')
322381SN/A
332381SN/ASimObject('Root.py')
342381SN/ASimObject('System.py')
352662Sstever@eecs.umich.eduSimObject('InstTracer.py')
362381SN/A
372381SN/ASource('async.cc')
382381SN/ASource('core.cc')
392381SN/ASource('debug.cc')
402381SN/ASource('eventq.cc')
412392SN/ASource('faults.cc')
422980Sgblack@eecs.umich.eduSource('main.cc')
432394SN/ASource('root.cc')
442812Srdreslin@umich.eduSource('serialize.cc')
452989Ssaidi@eecs.umich.eduSource('sim_events.cc')
462394SN/ASource('sim_object.cc')
472394SN/ASource('simulate.cc')
482394SN/ASource('startup.cc')
492394SN/ASource('stat_control.cc')
502812Srdreslin@umich.eduSource('system.cc')
512812Srdreslin@umich.edu
522812Srdreslin@umich.eduif env['FULL_SYSTEM']:
532812Srdreslin@umich.edu    Source('arguments.cc')
542812Srdreslin@umich.edu    Source('pseudo_inst.cc')
552812Srdreslin@umich.eduelse:
562813Srdreslin@umich.edu    Source('tlb.cc')
572813Srdreslin@umich.edu    SimObject('Process.py')
582813Srdreslin@umich.edu
593074Srdreslin@umich.edu    Source('process.cc')
602382SN/A    Source('syscall_emul.cc')
612811Srdreslin@umich.edu