SConscript revision 8191
17087Snate@binkert.org# -*- mode:python -*-
27087Snate@binkert.org
37087Snate@binkert.org# Copyright (c) 2009 The Hewlett-Packard Development Company
47087Snate@binkert.org# All rights reserved.
57087Snate@binkert.org#
67087Snate@binkert.org# Redistribution and use in source and binary forms, with or without
77087Snate@binkert.org# modification, are permitted provided that the following conditions are
87087Snate@binkert.org# met: redistributions of source code must retain the above copyright
97087Snate@binkert.org# notice, this list of conditions and the following disclaimer;
107087Snate@binkert.org# redistributions in binary form must reproduce the above copyright
117087Snate@binkert.org# notice, this list of conditions and the following disclaimer in the
127087Snate@binkert.org# documentation and/or other materials provided with the distribution;
135359Sgblack@eecs.umich.edu# neither the name of the copyright holders nor the names of its
145359Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from
155359Sgblack@eecs.umich.edu# this software without specific prior written permission.
165359Sgblack@eecs.umich.edu#
175359Sgblack@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
185359Sgblack@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
195359Sgblack@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
205359Sgblack@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
215359Sgblack@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
225359Sgblack@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
235359Sgblack@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
245359Sgblack@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
255359Sgblack@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
265359Sgblack@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
275359Sgblack@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
285359Sgblack@eecs.umich.edu#
295359Sgblack@eecs.umich.edu# Authors: Nathan Binkert
305359Sgblack@eecs.umich.edu
315359Sgblack@eecs.umich.eduImport('*')
325359Sgblack@eecs.umich.edu
335359Sgblack@eecs.umich.eduif not env['RUBY']:
345359Sgblack@eecs.umich.edu    Return()
355359Sgblack@eecs.umich.edu
365359Sgblack@eecs.umich.eduSimObject('Cache.py')
375359Sgblack@eecs.umich.eduSimObject('Sequencer.py')
385359Sgblack@eecs.umich.eduSimObject('DirectoryMemory.py')
395359Sgblack@eecs.umich.eduSimObject('MemoryControl.py')
405359Sgblack@eecs.umich.eduSimObject('WireBuffer.py')
414561Sgblack@eecs.umich.eduSimObject('RubySystem.py')
424561Sgblack@eecs.umich.edu
434561Sgblack@eecs.umich.eduSource('DMASequencer.cc')
444561Sgblack@eecs.umich.eduSource('DirectoryMemory.cc')
454561Sgblack@eecs.umich.eduSource('SparseMemory.cc')
464561Sgblack@eecs.umich.eduSource('CacheMemory.cc')
474601Sgblack@eecs.umich.eduSource('MemoryControl.cc')
484601Sgblack@eecs.umich.eduSource('WireBuffer.cc')
494601Sgblack@eecs.umich.eduSource('MemoryNode.cc')
504601Sgblack@eecs.umich.eduSource('PersistentTable.cc')
514601Sgblack@eecs.umich.eduSource('RubyPort.cc')
524601Sgblack@eecs.umich.eduSource('Sequencer.cc', Werror=False)
534601Sgblack@eecs.umich.eduSource('System.cc')
544601Sgblack@eecs.umich.eduSource('TimerTable.cc')
554601Sgblack@eecs.umich.edu