diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-10-11 16:08:14 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-10-11 16:08:14 -0700 |
commit | 168e524b9bfc9a53465562e2901c65ef388a237b (patch) | |
tree | 2763fc45863d288fa063f991bc70c7867cabd938 /src/dev/x86/south_bridge.cc | |
parent | a2599e4fc1272e4c1fdf5cff90da88653579b62f (diff) | |
download | gem5-168e524b9bfc9a53465562e2901c65ef388a237b.tar.xz |
X86: Create an IO APIC device.
Diffstat (limited to 'src/dev/x86/south_bridge.cc')
-rw-r--r-- | src/dev/x86/south_bridge.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dev/x86/south_bridge.cc b/src/dev/x86/south_bridge.cc index d366de4ad..c456f478d 100644 --- a/src/dev/x86/south_bridge.cc +++ b/src/dev/x86/south_bridge.cc @@ -37,7 +37,7 @@ using namespace X86ISA; SouthBridge::SouthBridge(const Params *p) : SimObject(p), platform(p->platform), pit(p->pit), pic1(p->pic1), pic2(p->pic2), - cmos(p->cmos), speaker(p->speaker) + cmos(p->cmos), speaker(p->speaker), ioApic(p->io_apic) { // Let the platform know where we are Pc * pc = dynamic_cast<Pc *>(platform); |