summaryrefslogtreecommitdiff
path: root/src/arch/x86/bios/SConscript
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/bios/SConscript
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/bios/SConscript')
-rw-r--r--src/arch/x86/bios/SConscript4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/x86/bios/SConscript b/src/arch/x86/bios/SConscript
index c4f4f80e6..912d6599c 100644
--- a/src/arch/x86/bios/SConscript
+++ b/src/arch/x86/bios/SConscript
@@ -71,3 +71,7 @@ if env['TARGET_ISA'] == 'x86':
# Intel Multiprocessor Specification Configuration Table
SimObject('IntelMP.py')
Source('intelmp.cc')
+
+ # ACPI system description tables
+ SimObject('ACPI.py')
+ Source('acpi.cc')