SConscript revision 5083
111384Ssteve.reinhardt@amd.com# -*- mode:python -*-
211384Ssteve.reinhardt@amd.com
38464SN/A# Copyright (c) 2006 The Regents of The University of Michigan
48464SN/A# All rights reserved.
57860SN/A#
611960Sgabeblack@google.com# Redistribution and use in source and binary forms, with or without
711960Sgabeblack@google.com# modification, are permitted provided that the following conditions are
811960Sgabeblack@google.com# met: redistributions of source code must retain the above copyright
911960Sgabeblack@google.com# notice, this list of conditions and the following disclaimer;
1010798Ssteve.reinhardt@amd.com# redistributions in binary form must reproduce the above copyright
117860SN/A# notice, this list of conditions and the following disclaimer in the
127860SN/A# documentation and/or other materials provided with the distribution;
137860SN/A# neither the name of the copyright holders nor the names of its
147860SN/A# contributors may be used to endorse or promote products derived from
157860SN/A# this software without specific prior written permission.
167860SN/A#
177860SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
187860SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
197860SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
207860SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
217860SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
227860SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
237860SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
247860SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
257860SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
267860SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
277860SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
287860SN/A#
297860SN/A# Authors: Nathan Binkert
307860SN/A
317860SN/AImport('*')
327860SN/A
337860SN/ASimObject('Bridge.py')
347860SN/ASimObject('Bus.py')
357860SN/ASimObject('PhysicalMemory.py')
367860SN/ASimObject('MemObject.py')
377860SN/A
387860SN/ASource('bridge.cc')
397860SN/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