SConscript revision 4486
17860SN/A# -*- mode:python -*-
27860SN/A
37860SN/A# Copyright (c) 2006 The Regents of The University of Michigan
48825Snilay@cs.wisc.edu# All rights reserved.
57935SN/A#
67935SN/A# Redistribution and use in source and binary forms, with or without
77935SN/A# modification, are permitted provided that the following conditions are
87860SN/A# met: redistributions of source code must retain the above copyright
97860SN/A# notice, this list of conditions and the following disclaimer;
107860SN/A# redistributions in binary form must reproduce the above copyright
117860SN/A# notice, this list of conditions and the following disclaimer in the
128825Snilay@cs.wisc.edu# documentation and/or other materials provided with the distribution;
138825Snilay@cs.wisc.edu# neither the name of the copyright holders nor the names of its
148825Snilay@cs.wisc.edu# contributors may be used to endorse or promote products derived from
158825Snilay@cs.wisc.edu# this software without specific prior written permission.
167860SN/A#
178464SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
188721SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
197860SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
208825Snilay@cs.wisc.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
218825Snilay@cs.wisc.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
227935SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
237935SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
247935SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
257935SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
267935SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
277935SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
287935SN/A#
298721SN/A# Authors: Nathan Binkert
307860SN/A
317860SN/AImport('*')
327860SN/A
338825Snilay@cs.wisc.eduSimObject('Bridge.py')
347860SN/ASimObject('Bus.py')
357860SN/ASimObject('PhysicalMemory.py')
367860SN/ASimObject('MemObject.py')
377860SN/A
388210SN/ASource('bridge.cc')
398210SN/ASource('bus.cc')
407860SN/ASource('dram.cc')
417860SN/ASource('mem_object.cc')
427860SN/ASource('packet.cc')
437860SN/ASource('physical.cc')
447860SN/ASource('port.cc')
457860SN/ASource('tport.cc')
467860SN/A
477860SN/Aif env['FULL_SYSTEM']:
487860SN/A    Source('vport.cc')
497860SN/Aelse:
507860SN/A    Source('page_table.cc')
517860SN/A    Source('translating_port.cc')
527860SN/A