SConscript revision 4484
11917SN/A# -*- mode:python -*-
21917SN/A
31917SN/A# Copyright (c) 2006 The Regents of The University of Michigan
41917SN/A# All rights reserved.
51917SN/A#
61917SN/A# Redistribution and use in source and binary forms, with or without
71917SN/A# modification, are permitted provided that the following conditions are
81917SN/A# met: redistributions of source code must retain the above copyright
91917SN/A# notice, this list of conditions and the following disclaimer;
101917SN/A# redistributions in binary form must reproduce the above copyright
111917SN/A# notice, this list of conditions and the following disclaimer in the
121917SN/A# documentation and/or other materials provided with the distribution;
131917SN/A# neither the name of the copyright holders nor the names of its
141917SN/A# contributors may be used to endorse or promote products derived from
151917SN/A# this software without specific prior written permission.
161917SN/A#
171917SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
181917SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
191917SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
201917SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
211917SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
221917SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
231917SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
241917SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
251917SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
261917SN/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#
291917SN/A# Authors: Nathan Binkert
301917SN/A
311917SN/AImport('*')
321917SN/A
331917SN/ASource('bridge.cc')
341917SN/ASource('bus.cc')
351917SN/ASource('dram.cc')
363570Sgblack@eecs.umich.eduSource('mem_object.cc')
378229Snate@binkert.orgSource('packet.cc')
386658Snate@binkert.orgSource('physical.cc')
391917SN/ASource('port.cc')
401917SN/ASource('tport.cc')
412680Sktlim@umich.edu
422235SN/Aif env['FULL_SYSTEM']:
431917SN/A    Source('vport.cc')
441917SN/Aelse:
451917SN/A    Source('page_table.cc')
461917SN/A    Source('translating_port.cc')
471917SN/A