SConscript revision 5904
15734Snate@binkert.org# -*- mode:python -*-
25734Snate@binkert.org
35734Snate@binkert.org# Copyright (c) 2006 The Regents of The University of Michigan
45734Snate@binkert.org# All rights reserved.
55734Snate@binkert.org#
65734Snate@binkert.org# Redistribution and use in source and binary forms, with or without
75734Snate@binkert.org# modification, are permitted provided that the following conditions are
85734Snate@binkert.org# met: redistributions of source code must retain the above copyright
95734Snate@binkert.org# notice, this list of conditions and the following disclaimer;
105734Snate@binkert.org# redistributions in binary form must reproduce the above copyright
115734Snate@binkert.org# notice, this list of conditions and the following disclaimer in the
125734Snate@binkert.org# documentation and/or other materials provided with the distribution;
135734Snate@binkert.org# neither the name of the copyright holders nor the names of its
145734Snate@binkert.org# contributors may be used to endorse or promote products derived from
155734Snate@binkert.org# this software without specific prior written permission.
165734Snate@binkert.org#
175734Snate@binkert.org# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
185734Snate@binkert.org# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
195734Snate@binkert.org# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
205734Snate@binkert.org# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
215734Snate@binkert.org# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
225734Snate@binkert.org# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
235734Snate@binkert.org# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
245734Snate@binkert.org# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
255734Snate@binkert.org# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
265734Snate@binkert.org# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
275734Snate@binkert.org# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
285734Snate@binkert.org#
295734Snate@binkert.org# Authors: Nathan Binkert
305734Snate@binkert.org
315734Snate@binkert.orgImport('*')
325734Snate@binkert.org
335734Snate@binkert.orgSimObject('Bridge.py')
345734Snate@binkert.orgSimObject('Bus.py')
355734Snate@binkert.orgSimObject('PhysicalMemory.py')
365734Snate@binkert.orgSimObject('MemObject.py')
375734Snate@binkert.org
385734Snate@binkert.orgSource('bridge.cc')
395734Snate@binkert.orgSource('bus.cc')
405734Snate@binkert.orgSource('dram.cc')
415734Snate@binkert.orgSource('mem_object.cc')
425734Snate@binkert.orgSource('packet.cc')
435734Snate@binkert.orgSource('physical.cc')
445734Snate@binkert.orgSource('port.cc')
455734Snate@binkert.orgSource('tport.cc')
465734Snate@binkert.orgSource('mport.cc')
4711320Ssteve.reinhardt@amd.com
485734Snate@binkert.orgif env['FULL_SYSTEM']:
495734Snate@binkert.org    Source('vport.cc')
505734Snate@binkert.orgelse:
515734Snate@binkert.org    Source('page_table.cc')
525734Snate@binkert.org    Source('translating_port.cc')
535734Snate@binkert.org
545734Snate@binkert.orgTraceFlag('Bus')
555734Snate@binkert.orgTraceFlag('BusAddrRanges')
565734Snate@binkert.orgTraceFlag('BusBridge')
575734Snate@binkert.orgTraceFlag('LLSC')
585734Snate@binkert.orgTraceFlag('MMU')
595734Snate@binkert.orgTraceFlag('MemoryAccess')
605734Snate@binkert.org