ioc.ssp

来自「<BIOS研发技术剖析>书的源代码,包括完整的BIOS汇编语言源程序」· SSP 代码 · 共 54 行

SSP
54
字号

// This AMI Setup Script Processor (SSP) file contains setup items for
// all supported peripheral devices.


Description = "Peripheral setup items"

LanguageVersion = 1

BeginDevice (SiS5513IdeController)

        Screen (SCR_PERIPHERAL)

                Question (Q_SIS5513_IDE_CONTROLLER)
                        Text = "Onboard PCI IDE"
                        Options = "Disabled",
                                  "Primary",
                                  "Secondary",
                                  "Both":DEFAULT:POWERON
                EndQuestion

                Question (Q_SIS5513_PREFETCH_PM)
                        Text = "  Primary Master Prefetch"
                        ShadeWhen (Q_SIS5513_IDE_CONTROLLER) = "Disabled", "Secondary"
                        Options = "Disable",
                                  "Enable":DEFAULT:POWERON
                EndQuestion

                Question (Q_SIS5513_PREFETCH_PS)
                        Text = "  Primary Slave Prefetch"
                        ShadeWhen (Q_SIS5513_IDE_CONTROLLER) = "Disabled", "Secondary" 
                        Options = "Disable",
                                  "Enable":DEFAULT:POWERON
                EndQuestion

                Question (Q_SIS5513_PREFETCH_SM)
                        Text = "  Secondary Master Prefetch"
                        ShadeWhen (Q_SIS5513_IDE_CONTROLLER) = "Disabled", "Primary"
                        Options = "Disable",
                                  "Enable":DEFAULT:POWERON
                EndQuestion

                Question (Q_SIS5513_PREFETCH_SS)
                        Text = "  Secondary Slave Prefetch"
                        ShadeWhen (Q_SIS5513_IDE_CONTROLLER) = "Disabled", "Primary" 
                        Options = "Disable",
                                  "Enable":DEFAULT:POWERON
                EndQuestion

        EndScreen

EndDevice   // SiS5513IdeController

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?