SConscript revision 7025
1360SN/A# -*- mode:python -*-
21458SN/A
3360SN/A# Copyright (c) 2006 The Regents of The University of Michigan
4360SN/A# All rights reserved.
5360SN/A#
6360SN/A# Redistribution and use in source and binary forms, with or without
7360SN/A# modification, are permitted provided that the following conditions are
8360SN/A# met: redistributions of source code must retain the above copyright
9360SN/A# notice, this list of conditions and the following disclaimer;
10360SN/A# redistributions in binary form must reproduce the above copyright
11360SN/A# notice, this list of conditions and the following disclaimer in the
12360SN/A# documentation and/or other materials provided with the distribution;
13360SN/A# neither the name of the copyright holders nor the names of its
14360SN/A# contributors may be used to endorse or promote products derived from
15360SN/A# this software without specific prior written permission.
16360SN/A#
17360SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18360SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19360SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20360SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21360SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22360SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23360SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24360SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25360SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26360SN/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
30360SN/A
31360SN/AImport('*')
322553SN/A
332221SN/ASimObject('Bridge.py')
342048SN/ASimObject('Bus.py')
35360SN/ASimObject('MemObject.py')
36360SN/ASimObject('PhysicalMemory.py')
372680Sktlim@umich.edu
382093SN/ASource('bridge.cc')
392093SN/ASource('bus.cc')
402093SN/ASource('dram.cc')
412093SN/ASource('mem_object.cc')
42360SN/ASource('packet.cc')
43360SN/ASource('physical.cc')
442107SN/ASource('port.cc')
45360SN/ASource('tport.cc')
462149SN/ASource('mport.cc')
472149SN/A
482093SN/Aif env['FULL_SYSTEM']:
492093SN/A    Source('vport.cc')
503114Sgblack@eecs.umich.eduelse:
512680Sktlim@umich.edu    Source('page_table.cc')
522093SN/A    Source('translating_port.cc')
532680Sktlim@umich.edu
54360SN/ATraceFlag('Bus')
552093SN/ATraceFlag('BusAddrRanges')
562093SN/ATraceFlag('BusBridge')
572093SN/ATraceFlag('LLSC')
582093SN/ATraceFlag('MMU')
592093SN/ATraceFlag('MemoryAccess')
60360SN/ATraceFlag('Ruby')
612680Sktlim@umich.edu