pc.cc (11244:a2af58a06c4e) pc.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2008 The Regents of The University of Michigan
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;

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

27 *
28 * Authors: Gabe Black
29 */
30
31/** @file
32 * Implementation of PC platform.
33 */
34
1/*
2 * Copyright (c) 2008 The Regents of The University of Michigan
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;

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

27 *
28 * Authors: Gabe Black
29 */
30
31/** @file
32 * Implementation of PC platform.
33 */
34
35#include "dev/x86/pc.hh"
36
35#include <deque>
36#include <string>
37#include <vector>
38
39#include "arch/x86/intmessage.hh"
40#include "arch/x86/x86_traits.hh"
41#include "config/the_isa.hh"
42#include "cpu/intr_control.hh"
37#include <deque>
38#include <string>
39#include <vector>
40
41#include "arch/x86/intmessage.hh"
42#include "arch/x86/x86_traits.hh"
43#include "config/the_isa.hh"
44#include "cpu/intr_control.hh"
45#include "dev/terminal.hh"
43#include "dev/x86/i82094aa.hh"
44#include "dev/x86/i8254.hh"
45#include "dev/x86/i8259.hh"
46#include "dev/x86/i82094aa.hh"
47#include "dev/x86/i8254.hh"
48#include "dev/x86/i8259.hh"
46#include "dev/x86/pc.hh"
47#include "dev/x86/south_bridge.hh"
49#include "dev/x86/south_bridge.hh"
48#include "dev/terminal.hh"
49#include "sim/system.hh"
50
51using namespace std;
52using namespace TheISA;
53
54Pc::Pc(const Params *p)
55 : Platform(p), system(p->system)
56{

--- 92 unchanged lines hidden ---
50#include "sim/system.hh"
51
52using namespace std;
53using namespace TheISA;
54
55Pc::Pc(const Params *p)
56 : Platform(p), system(p->system)
57{

--- 92 unchanged lines hidden ---