system.hh (7532:3f6413fc37a2) system.hh (8229:78bf55f23338)
1/*
2 * Copyright (c) 2007-2008 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

38 */
39
40#ifndef __ARCH_LINUX_X86_SYSTEM_HH__
41#define __ARCH_LINUX_X86_SYSTEM_HH__
42
43#include <string>
44#include <vector>
45
1/*
2 * Copyright (c) 2007-2008 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

38 */
39
40#ifndef __ARCH_LINUX_X86_SYSTEM_HH__
41#define __ARCH_LINUX_X86_SYSTEM_HH__
42
43#include <string>
44#include <vector>
45
46#include "params/LinuxX86System.hh"
47#include "arch/x86/bios/e820.hh"
48#include "arch/x86/system.hh"
46#include "arch/x86/bios/e820.hh"
47#include "arch/x86/system.hh"
48#include "params/LinuxX86System.hh"
49
50class LinuxX86System : public X86System
51{
52 protected:
53 std::string commandLine;
54 X86ISA::E820Table * e820Table;
55
56 public:
57 typedef LinuxX86SystemParams Params;
58 LinuxX86System(Params *p);
59 ~LinuxX86System();
60
61 void initState();
62};
63
64#endif
65
49
50class LinuxX86System : public X86System
51{
52 protected:
53 std::string commandLine;
54 X86ISA::E820Table * e820Table;
55
56 public:
57 typedef LinuxX86SystemParams Params;
58 LinuxX86System(Params *p);
59 ~LinuxX86System();
60
61 void initState();
62};
63
64#endif
65