source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Src/Handlers/Int13h/EBIOS/AH48h_GetExtendedDriveParameters.asm@ 352

Last change on this file since 352 was 332, checked in by krille_n_@…, 12 years ago

Changes:

  • Fixed a bug in the new BIOS Drive Information Tool.
  • Very small changes to improve speed (I hope).
  • Changed AH48h_GetExtendedDriveParameters.asm to allow AT builds with USE_386 (won't affect any other builds).
  • Verified that most define combinations can be built and changed Strings.asm accordingly. "Most" meaning with or without any combination of EBIOS and/or Serial code defines.
File size: 2.0 KB
RevLine 
[165]1; Project name : XTIDE Universal BIOS
2; Description : Int 13h function AH=48h, Get Extended Drive Parameters.
3
4; Section containing code
5SECTION .text
6
7;--------------------------------------------------------------------
8; Int 13h function AH=48h, Get Extended Drive Parameters.
9;
10; AH48h_GetExtendedDriveParameters
11; Parameters:
12; SI: Same as in INTPACK
13; DL: Translated Drive number
14; DS:DI: Ptr to DPT (in RAMVARS segment)
15; SS:BP: Ptr to IDEPACK
16; Parameters on INTPACK:
17; DS:SI: Ptr to Extended Drive Information Table to fill
18; Returns with INTPACK:
19; AH: Int 13h return status
20; DS:SI: Ptr to Extended Drive Information Table
[294]21; CF: 0 if successful, 1 if error
[165]22;--------------------------------------------------------------------
23AH48h_HandlerForGetExtendedDriveParameters:
[228]24 call AccessDPT_GetPointerToDRVPARAMStoCSBX
25 push bx
[227]26 call AccessDPT_GetLbaSectorCountToBXDXAX
[228]27 pop di ; CS:DI now points to DRVPARAMS
[167]28
[227]29 ; Point DS:SI to Extended Drive Information Table to fill
[169]30 mov ds, [bp+IDEPACK.intpack+INTPACK.ds]
[227]31 mov cx, MINIMUM_EDRIVEINFO_SIZE
32 cmp [si+EDRIVE_INFO.wSize], cx
[332]33 jb Prepare_ReturnFromInt13hWithInvalidFunctionError
[167]34 je SHORT .SkipEddConfigurationParameters
[165]35
[167]36 ; We do not support EDD Configuration Parameters so set to FFFF:FFFFh
[227]37 mov cx, -1 ; FFFFh
38 mov [si+EDRIVE_INFO.fpEDDparams], cx
39 mov [si+EDRIVE_INFO.fpEDDparams+2], cx
40 mov cx, EDRIVE_INFO_size
[167]41
[227]42 ; Fill Extended Drive Information Table in DS:SI
[167]43.SkipEddConfigurationParameters:
[227]44 mov [si+EDRIVE_INFO.wSize], cx
45 mov WORD [si+EDRIVE_INFO.wFlags], FLG_DMA_BOUNDARY_ERRORS_HANDLED_BY_BIOS
[165]46
[324]47 ; Store total sector count
[228]48 mov [si+EDRIVE_INFO.qwTotalSectors], ax
[227]49 xor ax, ax ; Return with success
[228]50 mov [si+EDRIVE_INFO.qwTotalSectors+2], dx
51 mov [si+EDRIVE_INFO.qwTotalSectors+4], bx
[229]52 mov [si+EDRIVE_INFO.qwTotalSectors+6], ax ; Always zero
[228]53 mov WORD [si+EDRIVE_INFO.wSectorSize], 512
[169]54
[167]55.ReturnWithError:
[165]56 jmp Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
Note: See TracBrowser for help on using the repository browser.