system.cc revision 6378:4a2ff62c3b4f
12030SN/A/*
22030SN/A * Copyright (c) 2007 MIPS Technologies, Inc.
32054SN/A * All rights reserved.
42054SN/A *
52054SN/A * Redistribution and use in source and binary forms, with or without
62054SN/A * modification, are permitted provided that the following conditions are
72054SN/A * met: redistributions of source code must retain the above copyright
82054SN/A * notice, this list of conditions and the following disclaimer;
92054SN/A * redistributions in binary form must reproduce the above copyright
102054SN/A * notice, this list of conditions and the following disclaimer in the
112054SN/A * documentation and/or other materials provided with the distribution;
122054SN/A * neither the name of the copyright holders nor the names of its
132054SN/A * contributors may be used to endorse or promote products derived from
142054SN/A * this software without specific prior written permission.
152054SN/A *
162054SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172054SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182054SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192054SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202054SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212054SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222054SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232054SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242054SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252054SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262054SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272054SN/A *
282030SN/A * Authors: Jaidev Patwardhan
292649Ssaidi@eecs.umich.edu */
302649Ssaidi@eecs.umich.edu
312649Ssaidi@eecs.umich.edu#include "arch/mips/bare_iron/system.hh"
322649Ssaidi@eecs.umich.edu#include "params/BareIronMipsSystem.hh"
332649Ssaidi@eecs.umich.edu
342649Ssaidi@eecs.umich.eduBareIronMipsSystem::BareIronMipsSystem(Params *p)
352649Ssaidi@eecs.umich.edu    : MipsSystem(p)
362504SN/A{ }
372030SN/A
382030SN/ABareIronMipsSystem::~BareIronMipsSystem()
392030SN/A{ }
402030SN/A
412030SN/ABareIronMipsSystem *
422030SN/ABareIronMipsSystemParams::create()
432030SN/A{
442030SN/A    return new BareIronMipsSystem(this);
452030SN/A}
462030SN/A
472504SN/A