system.cc (5268:5bfc53fe60e7) system.cc (6378:4a2ff62c3b4f)
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;

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

23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
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
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;

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

23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
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/vtophys.hh"
32#include "arch/mips/bare_iron/system.hh"
31#include "arch/mips/bare_iron/system.hh"
33#include "arch/mips/system.hh"
34#include "cpu/thread_context.hh"
35#include "cpu/base.hh"
36#include "dev/platform.hh"
37#include "mem/physical.hh"
38#include "mem/port.hh"
39#include "params/BareIronMipsSystem.hh"
32#include "params/BareIronMipsSystem.hh"
40#include "sim/byteswap.hh"
41
33
42using namespace std;
43using namespace MipsISA;
44
45
46BareIronMipsSystem::BareIronMipsSystem(Params *p)
47 : MipsSystem(p)
48{ }
49
50BareIronMipsSystem::~BareIronMipsSystem()
51{ }
52
53BareIronMipsSystem *
54BareIronMipsSystemParams::create()
55{
56 return new BareIronMipsSystem(this);
57}
58
34BareIronMipsSystem::BareIronMipsSystem(Params *p)
35 : MipsSystem(p)
36{ }
37
38BareIronMipsSystem::~BareIronMipsSystem()
39{ }
40
41BareIronMipsSystem *
42BareIronMipsSystemParams::create()
43{
44 return new BareIronMipsSystem(this);
45}
46