summaryrefslogtreecommitdiff
path: root/src/dev/x86/south_bridge.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-11 16:08:14 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-11 16:08:14 -0700
commit168e524b9bfc9a53465562e2901c65ef388a237b (patch)
tree2763fc45863d288fa063f991bc70c7867cabd938 /src/dev/x86/south_bridge.hh
parenta2599e4fc1272e4c1fdf5cff90da88653579b62f (diff)
downloadgem5-168e524b9bfc9a53465562e2901c65ef388a237b.tar.xz
X86: Create an IO APIC device.
Diffstat (limited to 'src/dev/x86/south_bridge.hh')
-rw-r--r--src/dev/x86/south_bridge.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dev/x86/south_bridge.hh b/src/dev/x86/south_bridge.hh
index 5677aa8a0..61d6d387a 100644
--- a/src/dev/x86/south_bridge.hh
+++ b/src/dev/x86/south_bridge.hh
@@ -40,6 +40,7 @@ namespace X86ISA
class I8259;
class Cmos;
class Speaker;
+ class I82094AA;
}
class SouthBridge : public SimObject
@@ -53,6 +54,7 @@ class SouthBridge : public SimObject
X86ISA::I8259 * pic2;
X86ISA::Cmos * cmos;
X86ISA::Speaker * speaker;
+ X86ISA::I82094AA * ioApic;
public:
typedef SouthBridgeParams Params;