16286Snate@binkert.org# -*- mode:python -*-
26286Snate@binkert.org
36286Snate@binkert.org# Copyright (c) 2009 The Hewlett-Packard Development Company
46286Snate@binkert.org# All rights reserved.
56286Snate@binkert.org#
66286Snate@binkert.org# Redistribution and use in source and binary forms, with or without
76286Snate@binkert.org# modification, are permitted provided that the following conditions are
86286Snate@binkert.org# met: redistributions of source code must retain the above copyright
96286Snate@binkert.org# notice, this list of conditions and the following disclaimer;
106286Snate@binkert.org# redistributions in binary form must reproduce the above copyright
116286Snate@binkert.org# notice, this list of conditions and the following disclaimer in the
126286Snate@binkert.org# documentation and/or other materials provided with the distribution;
136286Snate@binkert.org# neither the name of the copyright holders nor the names of its
146286Snate@binkert.org# contributors may be used to endorse or promote products derived from
156286Snate@binkert.org# this software without specific prior written permission.
166286Snate@binkert.org#
176286Snate@binkert.org# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
186286Snate@binkert.org# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
196286Snate@binkert.org# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
206286Snate@binkert.org# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
216286Snate@binkert.org# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
226286Snate@binkert.org# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
236286Snate@binkert.org# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
246286Snate@binkert.org# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
256286Snate@binkert.org# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
266286Snate@binkert.org# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
276286Snate@binkert.org# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
286286Snate@binkert.org#
296286Snate@binkert.org# Authors: Nathan Binkert
306286Snate@binkert.org
316286Snate@binkert.orgImport('*')
326286Snate@binkert.org
338492Snilay@cs.wisc.eduif env['PROTOCOL'] == 'None':
346286Snate@binkert.org    Return()
356286Snate@binkert.org
368257SBrad.Beckmann@amd.comSimObject('BasicLink.py')
378257SBrad.Beckmann@amd.comSimObject('BasicRouter.py')
3811021Sjthestness@gmail.comSimObject('MessageBuffer.py')
396876Ssteve.reinhardt@amd.comSimObject('Network.py')
406876Ssteve.reinhardt@amd.com
418257SBrad.Beckmann@amd.comSource('BasicLink.cc')
428257SBrad.Beckmann@amd.comSource('BasicRouter.cc')
4310301Snilay@cs.wisc.eduSource('MessageBuffer.cc')
446286Snate@binkert.orgSource('Network.cc')
458255SBrad.Beckmann@amd.comSource('Topology.cc')
46