diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-10-10 23:39:53 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-10-10 23:39:53 -0700 |
commit | b03c95d075b74913313576e6e1fa4fc6b1f4dcb2 (patch) | |
tree | 60b8cc64bf301d593e8a1b093e4a991047bc33a3 /src/arch/x86/bios/SConscript | |
parent | 89f016aacbe92f90c1af98678043f2f6fc82c364 (diff) | |
download | gem5-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/SConscript | 4 |
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') |