summaryrefslogtreecommitdiff
path: root/src/arch/x86/bios/SConscript
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-10 23:39:53 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-10 23:39:53 -0700
commitb03c95d075b74913313576e6e1fa4fc6b1f4dcb2 (patch)
tree60b8cc64bf301d593e8a1b093e4a991047bc33a3 /src/arch/x86/bios/SConscript
parent89f016aacbe92f90c1af98678043f2f6fc82c364 (diff)
downloadgem5-b03c95d075b74913313576e6e1fa4fc6b1f4dcb2.tar.xz
X86: Create SimObjects in python and C++ to represent the Intel MP 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 cdb5f390f..c4f4f80e6 100644
--- a/src/arch/x86/bios/SConscript
+++ b/src/arch/x86/bios/SConscript
@@ -67,3 +67,7 @@ if env['TARGET_ISA'] == 'x86':
# The DMI tables.
SimObject('SMBios.py')
Source('smbios.cc')
+
+ # Intel Multiprocessor Specification Configuration Table
+ SimObject('IntelMP.py')
+ Source('intelmp.cc')