Changeset 399 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS_Configurator_v2
- Timestamp:
- Apr 19, 2012, 10:39:44 PM (13 years ago)
- google:author:
- krille_n_@hotmail.com
- Location:
- trunk/XTIDE_Universal_BIOS_Configurator_v2/Src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages/BootMenuSettingsMenu.asm
r376 r399 3 3 4 4 ; 5 ; XTIDE Universal BIOS and Associated Tools 5 ; XTIDE Universal BIOS and Associated Tools 6 6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team. 7 7 ; … … 10 10 ; the Free Software Foundation; either version 2 of the License, or 11 11 ; (at your option) any later version. 12 ; 12 ; 13 13 ; This program is distributed in the hope that it will be useful, 14 14 ; but WITHOUT ANY WARRANTY; without even the implied warranty of 15 15 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 ; GNU General Public License for more details. 16 ; GNU General Public License for more details. 17 17 ; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 18 ; 18 ; 19 19 20 20 ; Section containing initialized data … … 71 71 iend 72 72 73 g_MenuitemBootMenuSerialScanDetect: 73 g_MenuitemBootMenuSerialScanDetect: 74 74 istruc MENUITEM 75 75 at MENUITEM.fnActivate, dw Menuitem_ActivateMultichoiceSelectionForMenuitemInDSSI … … 134 134 iend 135 135 136 %if 0 ; *FIXME* 136 137 g_MenuitemBootMnuStngsSwapBootDriveNumbers: 137 138 istruc MENUITEM … … 149 150 at MENUITEM.itemValue + ITEM_VALUE.wValueBitmask, dw FLG_ROMVARS_DRVXLAT 150 151 iend 152 %endif 151 153 152 154 … … 221 223 or [g_MenuitemBootMnuStngsDefaultBootDrive+MENUITEM.bFlags], al 222 224 or [g_MenuitemBootMnuStngsSelectionTimeout+MENUITEM.bFlags], al 223 or [g_MenuitemBootMnuStngsSwapBootDriveNumbers+MENUITEM.bFlags], al225 ; or [g_MenuitemBootMnuStngsSwapBootDriveNumbers+MENUITEM.bFlags], al 224 226 ret 225 227 … … 228 230 and [g_MenuitemBootMnuStngsDefaultBootDrive+MENUITEM.bFlags], al 229 231 and [g_MenuitemBootMnuStngsSelectionTimeout+MENUITEM.bFlags], al 230 and [g_MenuitemBootMnuStngsSwapBootDriveNumbers+MENUITEM.bFlags], al231 ret 232 ; and [g_MenuitemBootMnuStngsSwapBootDriveNumbers+MENUITEM.bFlags], al 233 ret 232 234 233 235 -
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages/IdeControllerMenu.asm
r376 r399 3 3 4 4 ; 5 ; XTIDE Universal BIOS and Associated Tools 5 ; XTIDE Universal BIOS and Associated Tools 6 6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team. 7 7 ; … … 10 10 ; the Free Software Foundation; either version 2 of the License, or 11 11 ; (at your option) any later version. 12 ; 12 ; 13 13 ; This program is distributed in the hope that it will be useful, 14 14 ; but WITHOUT ANY WARRANTY; without even the implied warranty of 15 15 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 ; GNU General Public License for more details. 16 ; GNU General Public License for more details. 17 17 ; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 18 ; 18 ; 19 19 20 20 ; Section containing initialized data … … 523 523 jb .writeNonSerial 524 524 525 mov ax, DEVICE_ATA_DEFAULT_PORT ; Defaults for 16-bit and better ATA devices526 mov bx, DEVICE_ATA_DEFAULT_PORTCTRL525 mov ax, DEVICE_ATA_PRIMARY_PORT ; Defaults for 16-bit and better ATA devices 526 mov bx, DEVICE_ATA_PRIMARY_PORTCTRL 527 527 528 528 .writeNonSerial: -
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Strings.asm
r380 r399 356 356 g_szItemBootDispMode: db "Display Mode",NULL 357 357 g_szItemBootFloppyDrvs: db "Number of Floppy Drives",NULL 358 g_szItemBootSwap: db "Swap boot drive numbers",NULL358 ;g_szItemBootSwap: db "Swap boot drive numbers",NULL 359 359 g_szItemSerialDetect: db "Scan for Serial Drives",NULL 360 360 … … 364 364 g_szDlgBootDispMode: db "Select display mode for Boot Menu.",NULL 365 365 g_szDlgBootFloppyDrvs: db "Select number of Floppy Drives to display on boot menu.",NULL 366 g_szDlgBootSwap: db "Enable drive number translation?",NULL366 ;g_szDlgBootSwap: db "Enable drive number translation?",NULL 367 367 g_szDlgSerialDetect: db "Scan for serial drives?",NULL 368 368 … … 372 372 g_szNfoDispMode: db "Display Mode for Boot Menu.",NULL 373 373 g_szNfoBootFloppyDrvs: db "Number of Floppy Drives to display on boot menu.",NULL 374 g_szNfoBootSwap: db "Drive Number Translation (swap first drive with selected).",NULL374 ;g_szNfoBootSwap: db "Drive Number Translation (swap first drive with selected).",NULL 375 375 g_szNfoSerialDetect: db "Scans all standard COM ports for serial drives." 376 376 db " This can also be invoked by holding down ALT at the end of normal drive detection.",NULL … … 382 382 g_szHelpBootFloppyDrvs: incbin "Bootmenu_FloppyDrives.txt" 383 383 db NULL 384 g_szHelpBootSwap: incbin "Bootmenu_SwapDrives.txt"385 db NULL384 ;g_szHelpBootSwap: incbin "Bootmenu_SwapDrives.txt" 385 ; db NULL 386 386 g_szHelpSerialDetect: incbin "Bootmenu_SerialDetect.txt" 387 387 db NULL
Note:
See TracChangeset
for help on using the changeset viewer.