e820.hh (6214:1ec0ec8933ae) e820.hh (6216:2f4020838149)
1/*
2 * Copyright (c) 2008 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 *

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

53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 *
55 * Authors: Gabe Black
56 */
57
58#ifndef __ARCH_X86_BIOS_E820_HH__
59#define __ARCH_X86_BIOS_E820_HH__
60
1/*
2 * Copyright (c) 2008 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 *

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

53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 *
55 * Authors: Gabe Black
56 */
57
58#ifndef __ARCH_X86_BIOS_E820_HH__
59#define __ARCH_X86_BIOS_E820_HH__
60
61#include <vector>
62
63#include "base/types.hh"
61#include "params/X86E820Entry.hh"
62#include "params/X86E820Table.hh"
64#include "params/X86E820Entry.hh"
65#include "params/X86E820Table.hh"
63#include "base/types.hh"
64#include "sim/sim_object.hh"
65
66#include "sim/sim_object.hh"
67
66#include <vector>
67
68class Port;
69
70namespace X86ISA
71{
72 class E820Entry : public SimObject
73 {
74 public:
75 Addr addr;

--- 25 unchanged lines hidden ---
68class Port;
69
70namespace X86ISA
71{
72 class E820Entry : public SimObject
73 {
74 public:
75 Addr addr;

--- 25 unchanged lines hidden ---