Changeset 399 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages
- 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/Menupages
- Files:
-
- 2 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:
Note:
See TracChangeset
for help on using the changeset viewer.