Changeset 592 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Menus
- Timestamp:
- Jun 25, 2018, 10:29:27 PM (6 years ago)
- Location:
- trunk/XTIDE_Universal_BIOS/Src/Menus
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu/BootMenuEvent.asm
r567 r592 141 141 142 142 ; Store default Menuitem (=default drive to boot from) 143 eMOVZX dx, BYTE[cs:ROMVARS.bBootDrv]143 eMOVZX dx, [cs:ROMVARS.bBootDrv] 144 144 call GetMenuitemToDXforDriveInDL 145 145 mov [bp+MENUINIT.wHighlightedItem], dx -
trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu/BootMenuPrint.asm
r589 r592 54 54 test dl, dl 55 55 js SHORT .go 56 mov bl, ( (g_szFloppyDrv)-$$ & 0xff); and revisit the earlier assumption...56 mov bl, (g_szFloppyDrv - $$) & 0xff ; and revisit the earlier assumption... 57 57 58 58 .go: -
trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu/BootMenuPrintCfg.asm
r568 r592 63 63 ;; with AL clear, and so we exchange AL and AH after the multiply for the final result. 64 64 ;; 65 %ifdef USE_186 66 imul ax, g_szAddressingModes_Displacement << (8-TRANSLATEMODE_FIELD_POSITION) 67 %else 65 68 mov cx, g_szAddressingModes_Displacement << (8-TRANSLATEMODE_FIELD_POSITION) 66 69 mul cx 70 %endif 67 71 xchg al, ah ; AL = always zero after above multiplication 68 72 add ax, g_szAddressingModes -
trunk/XTIDE_Universal_BIOS/Src/Menus/HotkeyBar.asm
r568 r592 407 407 sbb di, BYTE 1 ; Sub CF if Floppy Drive 408 408 xchg ax, cx 409 mov [es:di], al409 stosb 410 410 stc ; Valid hotkey scancode returned in AL 411 411
Note:
See TracChangeset
for help on using the changeset viewer.