SConscript revision 4781
12199SN/A# -*- mode:python -*- 22199SN/A 32199SN/A# Copyright (c) 2006 The Regents of The University of Michigan 42199SN/A# All rights reserved. 52199SN/A# 62199SN/A# Redistribution and use in source and binary forms, with or without 72199SN/A# modification, are permitted provided that the following conditions are 82199SN/A# met: redistributions of source code must retain the above copyright 92199SN/A# notice, this list of conditions and the following disclaimer; 102199SN/A# redistributions in binary form must reproduce the above copyright 112199SN/A# notice, this list of conditions and the following disclaimer in the 122199SN/A# documentation and/or other materials provided with the distribution; 132199SN/A# neither the name of the copyright holders nor the names of its 142199SN/A# contributors may be used to endorse or promote products derived from 152199SN/A# this software without specific prior written permission. 162199SN/A# 172199SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 182199SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 192199SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 202199SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 212199SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 222199SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 232199SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 242199SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 252199SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 262199SN/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 312199SN/AImport('*') 322199SN/A 332561SN/ASimObject('Bridge.py') 342226SN/ASimObject('Bus.py') 352561SN/ASimObject('PhysicalMemory.py') 362199SN/ASimObject('MemObject.py') 372199SN/A 382680Sktlim@umich.eduSource('bridge.cc') 392199SN/ASource('bus.cc') 402199SN/ASource('dram.cc') 412199SN/ASource('mem_object.cc') 422199SN/ASource('packet.cc') 432199SN/ASource('physical.cc') 442199SN/ASource('port.cc') 452209SN/ASource('tport.cc') 462199SN/A 472199SN/Aif env['FULL_SYSTEM']: 482199SN/A Source('vport.cc') 492199SN/Aelse: 502199SN/A Source('page_table.cc') 512680Sktlim@umich.edu Source('translating_port.cc') 522199SN/A