DummyChecker.py revision 9340:40f8c6a8f38d
11060SN/A# Copyright (c) 2010-2011 ARM Limited
27944SGiacomo.Gabrielli@arm.com# All rights reserved
37944SGiacomo.Gabrielli@arm.com#
47944SGiacomo.Gabrielli@arm.com# The license below extends only to copyright in the software and shall
57944SGiacomo.Gabrielli@arm.com# not be construed as granting a license to any other intellectual
67944SGiacomo.Gabrielli@arm.com# property including but not limited to intellectual property relating
77944SGiacomo.Gabrielli@arm.com# to a hardware implementation of the functionality of the software
87944SGiacomo.Gabrielli@arm.com# licensed hereunder.  You may use the software subject to the license
97944SGiacomo.Gabrielli@arm.com# terms below provided that you ensure that this notice is replicated
107944SGiacomo.Gabrielli@arm.com# unmodified and in its entirety in all distributions of the software,
117944SGiacomo.Gabrielli@arm.com# modified or unmodified, in source code or in binary form.
127944SGiacomo.Gabrielli@arm.com#
137944SGiacomo.Gabrielli@arm.com# Redistribution and use in source and binary forms, with or without
142702SN/A# modification, are permitted provided that the following conditions are
151060SN/A# met: redistributions of source code must retain the above copyright
161060SN/A# notice, this list of conditions and the following disclaimer;
171060SN/A# redistributions in binary form must reproduce the above copyright
181060SN/A# notice, this list of conditions and the following disclaimer in the
191060SN/A# documentation and/or other materials provided with the distribution;
201060SN/A# neither the name of the copyright holders nor the names of its
211060SN/A# contributors may be used to endorse or promote products derived from
221060SN/A# this software without specific prior written permission.
231060SN/A#
241060SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
251060SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
261060SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
271060SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
281060SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
291060SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
301060SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
311060SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
321060SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
331060SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
341060SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
351060SN/A#
361060SN/A# Authors: Geoffrey Blake
371060SN/A
381060SN/Afrom m5.params import *
392665SN/Afrom BaseCPU import BaseCPU
402665SN/A
411060SN/Aclass DummyChecker(BaseCPU):
421060SN/A    type = 'DummyChecker'
431060SN/A    cxx_header = 'cpu/dummy_checker.hh'
442292SN/A