X86: Set/correct some default values for x86 parameters.

This commit is contained in:
Gabe Black 2009-02-01 16:59:34 -08:00
parent be5d350afc
commit 953e4bba59
2 changed files with 4 additions and 4 deletions

View file

@ -94,6 +94,6 @@ class X86ACPIRSDP(SimObject):
# here.
revision = Param.UInt8(2, 'revision of ACPI being used, zero indexed')
rsdt = Param.X86ACPIRSDT('root system description table')
rsdt = Param.X86ACPIRSDT(NULL, 'root system description table')
xsdt = Param.X86ACPIXSDT(X86ACPIXSDT(),
'extended system description table')

View file

@ -115,9 +115,9 @@ class X86IntelMPProcessor(X86IntelMPBaseConfigEntry):
enable = Param.Bool(True, 'if this processor is usable')
bootstrap = Param.Bool(False, 'if this is the bootstrap processor')
stepping = Param.UInt8(0)
model = Param.UInt8(0)
family = Param.UInt8(0)
stepping = Param.UInt8(0, 'Processor stepping')
model = Param.UInt8(0, 'Processor model')
family = Param.UInt8(0, 'Processor family')
feature_flags = Param.UInt32(0, 'flags returned by the CPUID instruction')