Changeset 489 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu
- Timestamp:
- Dec 13, 2012, 7:32:09 AM (12 years ago)
- google:author:
- gregli@hotmail.com
- Location:
- trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu/BootMenuEvent.asm
r395 r489 37 37 eCMOVZ dl, dh 38 38 call IsDriveDLinSystem 39 jnc SHORT DoNotSetDefaultMenuitem39 jnc SHORT BootMenuEvent_Handler.DoNotSetDefaultMenuitem 40 40 call DriveXlate_SetDriveToSwap 41 41 ; Fall to GetMenuitemToDXforDriveInDL … … 106 106 jmp bx 107 107 108 EventNotHandled:109 DoNotSetDefaultMenuitem:108 .EventNotHandled: 109 .DoNotSetDefaultMenuitem: 110 110 xor dx, dx ; Clear CF (and menuitem index for DoNotSetDefaultMenuitem) 111 111 ret … … 127 127 128 128 cmp bx, BYTE MENUEVENT.RefreshItemFromCX ; Above last supported item? 129 ja SHORT EventNotHandled129 ja SHORT .EventNotHandled 130 130 jmp [cs:bx+rgfnEventSpecificHandlers] 131 131 132 EventNotHandled:133 DoNotSetDefaultMenuitem:132 .EventNotHandled: 133 .DoNotSetDefaultMenuitem: 134 134 xor dx, dx ; Clear CF (and menuitem index for DoNotSetDefaultMenuitem) 135 135 ret -
trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu/BootMenuPrint.asm
r421 r489 76 76 ;-------------------------------------------------------------------- 77 77 BootMenuPrint_TitleStrings: 78 mov si, ROMVARS.szTitle 79 call DetectPrint_NullTerminatedStringFromCSSIandSetCF 80 CALL_DISPLAY_LIBRARY PrintNewlineCharacters 81 mov si, ROMVARS.szVersion 82 jmp DetectPrint_NullTerminatedStringFromCSSIandSetCF 83 84 78 xor di,di ; Null character will be eaten 79 mov si, g_szBootMenuTitle 80 jmp DetectPrint_RomFoundAtSegment.BootMenuEntry 81 82 85 83 ;-------------------------------------------------------------------- 86 84 ; BootMenuPrint_RefreshInformation
Note:
See TracChangeset
for help on using the changeset viewer.