Deleted Added
sdiff udiff text old ( 11793:ef606668d247 ) new ( 11800:54436a1784dc )
full compact
1/*
2 * Copyright (c) 2007 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

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

34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Gabe Black
38 */
39
40#include "arch/x86/system.hh"
41
42#include "arch/x86/bios/intelmp.hh"
43#include "arch/x86/bios/smbios.hh"
44#include "arch/x86/isa_traits.hh"
45#include "base/loader/object_file.hh"
46#include "cpu/thread_context.hh"
47#include "params/X86System.hh"
48
49using namespace LittleEndianGuest;
50using namespace X86ISA;
51
52X86System::X86System(Params *p) :
53 System(p), smbiosTable(p->smbios_table),
54 mpFloatingPointer(p->intel_mp_pointer),
55 mpConfigTable(p->intel_mp_table),

--- 322 unchanged lines hidden ---