simple-atomic-dummychecker.py revision 9792:c02004c2cc5b
16145SN/A# Copyright (c) 2013 ARM Limited
26386SN/A# All rights reserved.
37553SN/A#
46386SN/A# The license below extends only to copyright in the software and shall
56386SN/A# not be construed as granting a license to any other intellectual
66386SN/A# property including but not limited to intellectual property relating
76386SN/A# to a hardware implementation of the functionality of the software
86386SN/A# licensed hereunder.  You may use the software subject to the license
96386SN/A# terms below provided that you ensure that this notice is replicated
106386SN/A# unmodified and in its entirety in all distributions of the software,
116386SN/A# modified or unmodified, in source code or in binary form.
126386SN/A#
136386SN/A# Redistribution and use in source and binary forms, with or without
146386SN/A# modification, are permitted provided that the following conditions are
156386SN/A# met: redistributions of source code must retain the above copyright
166386SN/A# notice, this list of conditions and the following disclaimer;
176386SN/A# redistributions in binary form must reproduce the above copyright
186386SN/A# notice, this list of conditions and the following disclaimer in the
196386SN/A# documentation and/or other materials provided with the distribution;
206386SN/A# neither the name of the copyright holders nor the names of its
216386SN/A# contributors may be used to endorse or promote products derived from
226386SN/A# this software without specific prior written permission.
236386SN/A#
246386SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
256386SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
266386SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
276386SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
286386SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
296145SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
307632SBrad.Beckmann@amd.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
317632SBrad.Beckmann@amd.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
328229Snate@binkert.org# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
338232Snate@binkert.org# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
346145SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
357553SN/A#
367553SN/A# Authors: Andreas Hansson
376145SN/A
387553SN/Afrom m5.objects import *
397553SN/Afrom base_config import *
407553SN/A
417553SN/Aroot = BaseSESystemUniprocessor(mem_mode='atomic',
427553SN/A                                cpu_class=AtomicSimpleCPU,
437553SN/A                                checker=True).create_root()
447553SN/A