Changeset 365 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Boot/BootMenuPrintCfg.asm
- Timestamp:
- Mar 27, 2012, 5:01:57 PM (13 years ago)
- google:author:
- aitotat@gmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Boot/BootMenuPrintCfg.asm
r363 r365 65 65 test BYTE [di+DPT.bFlagsHigh], FLGH_DPT_BLOCK_MODE_SUPPORTED 66 66 jz SHORT .PushBlockSizeFromAX 67 mov al, [di+DPT_ATA.b SetBlock]67 mov al, [di+DPT_ATA.bBlockSize] 68 68 .PushBlockSizeFromAX: 69 69 push ax … … 114 114 ;-------------------------------------------------------------------- 115 115 .PushResetStatus: 116 call BootMenuInfo_IsAvailable ; Load segment to ES 117 call BootMenuInfo_ConvertDPTtoBX 118 push WORD [es:bx+BOOTMENUINFO.wInitErrorFlags] 116 xor ax, ax 117 %ifdef MODULE_SERIAL 118 test BYTE [di+DPT.bFlagsHigh], FLGH_DPT_SERIAL_DEVICE 119 jnz SHORT .AlwaysSuccess 120 mov al, [di+DPT_ATA.bInitError] 121 .AlwaysSuccess: 122 %endif 123 push ax 119 124 120 125 ;;; fall-out to BootMenuPrint_HardDiskRefreshInformation.
Note:
See TracChangeset
for help on using the changeset viewer.