SConscript revision 7722
112SN/A# -*- mode:python -*-
21762SN/A
312SN/A# Copyright (c) 2006 The Regents of The University of Michigan
412SN/A# All rights reserved.
512SN/A#
612SN/A# Redistribution and use in source and binary forms, with or without
712SN/A# modification, are permitted provided that the following conditions are
812SN/A# met: redistributions of source code must retain the above copyright
912SN/A# notice, this list of conditions and the following disclaimer;
1012SN/A# redistributions in binary form must reproduce the above copyright
1112SN/A# notice, this list of conditions and the following disclaimer in the
1212SN/A# documentation and/or other materials provided with the distribution;
1312SN/A# neither the name of the copyright holders nor the names of its
1412SN/A# contributors may be used to endorse or promote products derived from
1512SN/A# this software without specific prior written permission.
1612SN/A#
1712SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1812SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1912SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2012SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2112SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2212SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2312SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2412SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2512SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2612SN/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#
2912SN/A# Authors: Nathan Binkert
3012SN/A
3112SN/AImport('*')
3212SN/A
3312SN/ASimObject('Bridge.py')
345070Ssaidi@eecs.umich.eduSimObject('Bus.py')
355090Sgblack@eecs.umich.eduSimObject('MemObject.py')
3612SN/ASimObject('PhysicalMemory.py')
378229Snate@binkert.org
388229Snate@binkert.orgSource('bridge.cc')
3912SN/ASource('bus.cc')
4012SN/ASource('dram.cc')
4112SN/ASource('mem_object.cc')
4212SN/ASource('packet.cc')
435090Sgblack@eecs.umich.eduSource('physical.cc')
445090Sgblack@eecs.umich.eduSource('port.cc')
455090Sgblack@eecs.umich.eduSource('tport.cc')
462976Sgblack@eecs.umich.eduSource('mport.cc')
472976Sgblack@eecs.umich.edu
482976Sgblack@eecs.umich.eduif env['FULL_SYSTEM']:
492976Sgblack@eecs.umich.edu    Source('vport.cc')
502976Sgblack@eecs.umich.eduelse:
515070Ssaidi@eecs.umich.edu    Source('page_table.cc')
522976Sgblack@eecs.umich.edu    Source('translating_port.cc')
53468SN/A
547581SAli.Saidi@arm.comTraceFlag('Bus')
55468SN/ATraceFlag('BusAddrRanges')
5612SN/ATraceFlag('BusBridge')
572479SN/ATraceFlag('LLSC')
58360SN/ATraceFlag('MMU')
5912SN/ATraceFlag('MemoryAccess')
605070Ssaidi@eecs.umich.eduTraceFlag('Ruby')
615070Ssaidi@eecs.umich.edu