Deleted Added
sdiff udiff text old ( 5299:e61b9f2a9732 ) new ( 5303:ee44ea10f32f )
full compact
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

50 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 *
55 * Authors: Gabe Black
56 */
57
58#include "arch/x86/linux/system.hh"
59#include "arch/vtophys.hh"
60#include "base/trace.hh"
61#include "mem/physical.hh"
62#include "params/LinuxX86System.hh"
63
64
65using namespace LittleEndianGuest;
66using namespace X86ISA;
67
68LinuxX86System::LinuxX86System(Params *p)

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

73LinuxX86System::~LinuxX86System()
74{
75}
76
77void
78LinuxX86System::startup()
79{
80 X86System::startup();
81 //Build the real mode data structure.
82}
83
84LinuxX86System *
85LinuxX86SystemParams::create()
86{
87 return new LinuxX86System(this);
88}