- Timestamp:
- Mar 13, 2011, 6:37:27 PM (14 years ago)
- google:author:
- aitotat
- Location:
- trunk/XTIDE_Universal_BIOS_Configurator_v2
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS_Configurator_v2/Inc/Help/Bootmenu_Timeout.txt
r68 r136 1 Boot Menu selection timeout in seconds. When time goes to zero, currently selected drive will be booted automatically. Timeout can be disabled by setting this to 0.1 Boot Menu selection timeout in BIOS timer ticks (1 second = 18.2 ticks). When time goes to zero, currently selected drive will be booted automatically. Timeout can be disabled by setting this to 0. -
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/BiosFile.asm
r118 r136 26 26 mov ax, FLG_CFGVARS_FILELOADED 27 27 call Buffers_NewBiosWithSizeInDXCXandSourceInAXhasBeenLoadedForConfiguration 28 call FileIO_CloseUsingHandleFromBX 28 29 call DisplayFileLoadedSuccesfully 29 call FileIO_CloseUsingHandleFromBX30 30 jmp SHORT .Return 31 31 … … 166 166 jc SHORT .DisplayErrorMessage 167 167 168 call FileIO_CloseUsingHandleFromBX 168 169 call Buffers_ClearUnsavedChanges 169 170 call DisplayFileSavedSuccesfully -
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages/BootMenuSettingsMenu.asm
r114 r136 61 61 at MENUITEM.szQuickInfo, dw g_szNfoBootTimeout 62 62 at MENUITEM.szHelp, dw g_szHelpBootTimeout 63 at MENUITEM.bFlags, db FLG_MENUITEM_VISIBLE | FLG_MENUITEM_BYTEVALUE63 at MENUITEM.bFlags, db FLG_MENUITEM_VISIBLE 64 64 at MENUITEM.bType, db TYPE_MENUITEM_UNSIGNED 65 at MENUITEM.itemValue + ITEM_VALUE.wRomvarsValueOffset, dw ROMVARS. bBootDelay65 at MENUITEM.itemValue + ITEM_VALUE.wRomvarsValueOffset, dw ROMVARS.wBootTimeout 66 66 at MENUITEM.itemValue + ITEM_VALUE.szDialogTitle, dw g_szDlgBootTimeout 67 67 at MENUITEM.itemValue + ITEM_VALUE.wMinValue, dw 0 68 at MENUITEM.itemValue + ITEM_VALUE.wMaxValue, dw 6068 at MENUITEM.itemValue + ITEM_VALUE.wMaxValue, dw 1092 69 69 iend 70 70 -
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Strings.asm
r133 r136 180 180 g_szItemBootSwap: db "Swap boot drive numbers",NULL 181 181 182 g_szDlgBootTimeout: db "Enter Boot Menu selection timeout in seconds (1...60, 0 disables timeout).",NULL182 g_szDlgBootTimeout: db "Enter Boot Menu selection timeout in BIOS timer ticks (1...1092, 0 disables timeout).",NULL 183 183 g_szDlgBootDrive: db "Enter default drive number (0xh for Floppy Drives, 8xh for Hard Disks, FFh for ROM boot).",NULL 184 184 g_szDlgBootFloppyDrvs: db "Enter number of Floppy Drives to display on boot menu.",NULL 185 185 g_szDlgBootSwap: db "Enable drive number translation?",NULL 186 186 187 g_szNfoBootTimeout: db "Menu item selection timeout in seconds.",NULL187 g_szNfoBootTimeout: db "Menu item selection timeout in BIOS timer ticks.",NULL 188 188 g_szNfoBootDrive: db "Default drive on boot menu.",NULL 189 189 g_szNfoBootFloppyDrvs: db "Number of Floppy Drives to display on boot menu.",NULL
Note:
See TracChangeset
for help on using the changeset viewer.