Deleted Added
sdiff udiff text old ( 6378:4a2ff62c3b4f ) new ( 11793:ef606668d247 )
full compact
1/*
2 * Copyright (c) 2007 MIPS Technologies, Inc.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 15 unchanged lines hidden (view full) ---

24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Jaidev Patwardhan
29 */
30
31#include "arch/mips/bare_iron/system.hh"
32#include "params/BareIronMipsSystem.hh"
33
34BareIronMipsSystem::BareIronMipsSystem(Params *p)
35 : MipsSystem(p)
36{ }
37
38BareIronMipsSystem::~BareIronMipsSystem()
39{ }
40
41BareIronMipsSystem *
42BareIronMipsSystemParams::create()
43{
44 return new BareIronMipsSystem(this);
45}
46