Changeset 526 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu
- Timestamp:
- Mar 15, 2013, 1:38:58 AM (12 years ago)
- google:author:
- krille_n_@hotmail.com
- Location:
- trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu/BootMenu.asm
r505 r526 4 4 ; 5 5 ; XTIDE Universal BIOS and Associated Tools 6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-201 2by XTIDE Universal BIOS Team.6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team. 7 7 ; 8 8 ; This program is free software; you can redistribute it and/or modify -
trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu/BootMenuEvent.asm
r493 r526 3 3 4 4 ; 5 ; XTIDE Universal BIOS and Associated Tools 6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-201 2by XTIDE Universal BIOS Team.5 ; XTIDE Universal BIOS and Associated Tools 6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team. 7 7 ; 8 8 ; This program is free software; you can redistribute it and/or modify … … 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. 17 ; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 18 ; 16 ; GNU General Public License for more details. 17 ; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 18 ; 19 19 20 20 ; Section containing code … … 115 115 ; Does not matter 116 116 ;-------------------------------------------------------------------- 117 FirstEvent: 117 FirstEvent: 118 118 EventInitializeMenuinitFromSSBP: 119 119 ; Store default Menuitem (=default drive to boot from) … … 128 128 inc ax ; extra entry for ROM Boot item 129 129 mov [bp+MENUINIT.wItems], ax 130 130 131 131 ; Store menu size 132 132 mov WORD [bp+MENUINIT.wTitleAndInfoLines], BOOT_MENU_TITLE_AND_INFO_LINES … … 161 161 EventItemHighlightedFromCX: 162 162 push cx 163 call BootMenu_GetDriveToDXforMenuitemInCX 164 jnc .noDriveSwap 163 call BootMenu_GetDriveToDXforMenuitemInCX 164 jnc .noDriveSwap 165 165 call DriveXlate_SetDriveToSwap 166 .noDriveSwap: 167 166 .noDriveSwap: 167 168 168 ; Redraw changes in drive numbers 169 169 xor ax, ax ; Update first floppy drive (for translated drive number) … … 179 179 ret 180 180 181 181 182 182 ;-------------------------------------------------------------------- 183 183 ; EventItemSelectedFromCX … … 211 211 ; Fall to BootMenuEvent_Completed 212 212 213 213 214 214 ;-------------------------------------------------------------------- 215 215 ; BootMenuEvent_Completed -
trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu/BootMenuPrint.asm
r492 r526 4 4 ; 5 5 ; XTIDE Universal BIOS and Associated Tools 6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-201 2by XTIDE Universal BIOS Team.6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team. 7 7 ; 8 8 ; This program is free software; you can redistribute it and/or modify … … 69 69 add al, 'A' ; floppy drive letter (we always push this although 70 70 ; the hard disks don't ever use it, but it does no harm) 71 .ROMBoot: 72 push ax 71 .ROMBoot: 72 push ax 73 73 74 74 jmp SHORT BootMenuPrint_RefreshInformation.FormatRelay -
trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu/BootMenuPrintCfg.asm
r491 r526 9 9 ; 10 10 ; XTIDE Universal BIOS and Associated Tools 11 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-201 2by XTIDE Universal BIOS Team.11 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team. 12 12 ; 13 13 ; This program is free software; you can redistribute it and/or modify
Note:
See TracChangeset
for help on using the changeset viewer.