Changeset 421 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu/BootMenuPrint.asm
- Timestamp:
- May 9, 2012, 7:12:53 PM (13 years ago)
- google:author:
- aitotat@gmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu/BootMenuPrint.asm
r399 r421 202 202 push dx ; Magnitude character 203 203 204 test di, di 204 test di, di ; Zero if foreign drive 205 205 jz SHORT BootMenuPrint_RefreshInformation.FormatRelay 206 206 … … 229 229 ; CX 230 230 ;-------------------------------------------------------------------- 231 GetTotalSectorCount: 232 test BYTE [di+DPT.bFlagsLow], FLG_DRVNHEAD_LBA 233 jnz SHORT .ReturnFullCapacity 234 jmp AH15h_GetSectorCountToBXDXAX 235 .ReturnFullCapacity: 236 jmp AccessDPT_GetLbaSectorCountToBXDXAX 231 %ifdef MODULE_EBIOS 232 GetTotalSectorCount EQU AccessDPT_GetLbaSectorCountToBXDXAX 233 %else 234 GetTotalSectorCount EQU AH15h_GetSectorCountToBXDXAX 235 %endif
Note:
See TracChangeset
for help on using the changeset viewer.