summaryrefslogtreecommitdiff
path: root/src/arch/x86/system.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-10 23:43:33 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-10 23:43:33 -0700
commit3d1734ec29a0572a2c0fe403d737adbd9756c993 (patch)
treee77bb4c3f2b75ebd5f7cb60d4ca93ce53cd28dec /src/arch/x86/system.cc
parentf85a7f00c0a9da6181fb803d760b1378fbc8bd27 (diff)
downloadgem5-3d1734ec29a0572a2c0fe403d737adbd9756c993.tar.xz
X86: Create SimObjects in python and C++ to represent the ACPI system description tables.
Diffstat (limited to 'src/arch/x86/system.cc')
-rw-r--r--src/arch/x86/system.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/arch/x86/system.cc b/src/arch/x86/system.cc
index b2fadd682..ed3dae4e6 100644
--- a/src/arch/x86/system.cc
+++ b/src/arch/x86/system.cc
@@ -77,7 +77,8 @@ using namespace X86ISA;
X86System::X86System(Params *p) :
System(p), smbiosTable(p->smbios_table),
mpFloatingPointer(p->intel_mp_pointer),
- mpConfigTable(p->intel_mp_table)
+ mpConfigTable(p->intel_mp_table),
+ rsdp(p->acpi_description_table_pointer)
{}
void