SConscript revision 5638
17160Sgblack@eecs.umich.edu# -*- mode:python -*-
27160Sgblack@eecs.umich.edu
37160Sgblack@eecs.umich.edu# Copyright (c) 2006 The Regents of The University of Michigan
47160Sgblack@eecs.umich.edu# All rights reserved.
57160Sgblack@eecs.umich.edu#
67160Sgblack@eecs.umich.edu# Redistribution and use in source and binary forms, with or without
77160Sgblack@eecs.umich.edu# modification, are permitted provided that the following conditions are
87160Sgblack@eecs.umich.edu# met: redistributions of source code must retain the above copyright
97160Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer;
107160Sgblack@eecs.umich.edu# redistributions in binary form must reproduce the above copyright
117160Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer in the
127160Sgblack@eecs.umich.edu# documentation and/or other materials provided with the distribution;
137160Sgblack@eecs.umich.edu# neither the name of the copyright holders nor the names of its
147160Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from
157160Sgblack@eecs.umich.edu# this software without specific prior written permission.
167160Sgblack@eecs.umich.edu#
177160Sgblack@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
187160Sgblack@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
197160Sgblack@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
207160Sgblack@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
217160Sgblack@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
227160Sgblack@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
237160Sgblack@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
247160Sgblack@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
257160Sgblack@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
267160Sgblack@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
277160Sgblack@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
287160Sgblack@eecs.umich.edu#
297160Sgblack@eecs.umich.edu# Authors: Gabe Black
307160Sgblack@eecs.umich.edu
317160Sgblack@eecs.umich.eduImport('*')
327160Sgblack@eecs.umich.edu
337160Sgblack@eecs.umich.eduif env['FULL_SYSTEM'] and env['TARGET_ISA'] == 'x86':
347160Sgblack@eecs.umich.edu    SimObject('Pc.py')
357160Sgblack@eecs.umich.edu    Source('pc.cc')
367160Sgblack@eecs.umich.edu
377160Sgblack@eecs.umich.edu    SimObject('SouthBridge.py')
387160Sgblack@eecs.umich.edu    Source('south_bridge.cc')
397160Sgblack@eecs.umich.edu
407160Sgblack@eecs.umich.edu    SimObject('Cmos.py')
417160Sgblack@eecs.umich.edu    Source('cmos.cc')
427160Sgblack@eecs.umich.edu    TraceFlag('CMOS', 'Accesses to CMOS devices')
437160Sgblack@eecs.umich.edu
447160Sgblack@eecs.umich.edu    SimObject('I8259.py')
457160Sgblack@eecs.umich.edu    Source('i8259.cc')
467160Sgblack@eecs.umich.edu    TraceFlag('I8259', 'Accesses to the I8259 PIC devices')
478302SAli.Saidi@ARM.com
487160Sgblack@eecs.umich.edu    SimObject('I8254.py')
497160Sgblack@eecs.umich.edu    Source('i8254.cc')
507160Sgblack@eecs.umich.edu
517160Sgblack@eecs.umich.edu    SimObject('PcSpeaker.py')
527160Sgblack@eecs.umich.edu    Source('speaker.cc')
537160Sgblack@eecs.umich.edu    TraceFlag('PcSpeaker')
547160Sgblack@eecs.umich.edu
558303SAli.Saidi@ARM.com    SimObject('X86IntPin.py')
567160Sgblack@eecs.umich.edu    Source('intdev.cc')
577160Sgblack@eecs.umich.edu