source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Src/Handlers/Int13h/AH24h_HSetBlocks.asm@ 371

Last change on this file since 371 was 365, checked in by aitotat@…, 12 years ago

Changes to XTIDE Universal BIOS:

  • Errors from AH=9h are stored to DPTs again.
  • XT build fits in 8k again.
File size: 1.8 KB
RevLine 
[148]1; Project name : XTIDE Universal BIOS
[3]2; Description : Int 13h function AH=24h, Set Multiple Blocks.
3
4; Section containing code
5SECTION .text
6
7;--------------------------------------------------------------------
8; Int 13h function AH=24h, Set Multiple Blocks.
9;
10; AH24h_HandlerForSetMultipleBlocks
11; Parameters:
[148]12; AL: Same as in INTPACK
13; DL: Translated Drive number
14; DS:DI: Ptr to DPT (in RAMVARS segment)
[150]15; SS:BP: Ptr to IDEPACK
16; Parameters on INTPACK:
[3]17; AL: Number of Sectors per Block (1, 2, 4, 8, 16, 32, 64 or 128)
[150]18; Returns with INTPACK:
[3]19; AH: Int 13h return status
[294]20; CF: 0 if successful, 1 if error
[3]21;--------------------------------------------------------------------
22AH24h_HandlerForSetMultipleBlocks:
[84]23%ifndef USE_186
[3]24 call AH24h_SetBlockSize
[148]25 jmp Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
[84]26%else
[148]27 push Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
[162]28 ; Fall to AH24h_SetBlockSize
[84]29%endif
[3]30
31
32;--------------------------------------------------------------------
33; AH24h_SetBlockSize
34; Parameters:
35; AL: Number of Sectors per Block (1, 2, 4, 8, 16, 32, 64 or 128)
[148]36; DS:DI: Ptr to DPT (in RAMVARS segment)
[150]37; SS:BP: Ptr to IDEPACK
[3]38; Returns:
39; AH: Int 13h return status
[294]40; CF: 0 if successful, 1 if error
[3]41; Corrupts registers:
[365]42; AL, CX, DX
[3]43;--------------------------------------------------------------------
44AH24h_SetBlockSize:
[365]45 push bx
46
[150]47 push ax
[365]48 xchg dx, ax ; DL = Block size (Sector Count Register)
[150]49 mov al, COMMAND_SET_MULTIPLE_MODE
50 mov bx, TIMEOUT_AND_STATUS_TO_WAIT(TIMEOUT_DRDY, FLG_STATUS_DRDY)
51 call Idepack_StoreNonExtParametersAndIssueCommandFromAL
52 pop bx
[365]53 jnc SHORT .StoreBlockSize
54 mov bl, 1 ; Block size 1 will always work
55.StoreBlockSize: ; Store new block size to DPT and return
56 mov [di+DPT_ATA.bBlockSize], bl
57
58 pop bx
[3]59 ret
Note: See TracBrowser for help on using the repository browser.