source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Src/Handlers/Int13h/AH11h_HRecal.asm @ 526

Last change on this file since 526 was 526, checked in by krille_n_@…, 11 years ago

Changes:

  • Update of the copyright notices to include the year 2013.
File size: 2.1 KB
RevLine 
[148]1; Project name  :   XTIDE Universal BIOS
[3]2; Description   :   Int 13h function AH=11h, Recalibrate.
3
[376]4;
[526]5; XTIDE Universal BIOS and Associated Tools
6; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team.
[376]7;
8; This program is free software; you can redistribute it and/or modify
9; it under the terms of the GNU General Public License as published by
10; the Free Software Foundation; either version 2 of the License, or
11; (at your option) any later version.
[526]12;
[376]13; This program is distributed in the hope that it will be useful,
14; but WITHOUT ANY WARRANTY; without even the implied warranty of
15; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
[526]16; GNU General Public License for more details.
[376]17; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
[526]18;
[376]19
[3]20; Section containing code
21SECTION .text
22
23;--------------------------------------------------------------------
24; Int 13h function AH=11h, Recalibrate.
25;
26; AH11h_HandlerForRecalibrate
27;   Parameters:
[148]28;       DL:     Translated Drive number
29;       DS:DI:  Ptr to DPT (in RAMVARS segment)
[150]30;       SS:BP:  Ptr to IDEREGS_AND_INTPACK
31;   Returns with INTPACK:
[3]32;       AH:     BIOS Error code
[294]33;       CF:     0 if successful, 1 if error
[3]34;--------------------------------------------------------------------
35AH11h_HandlerForRecalibrate:
[84]36%ifndef USE_186
[3]37    call    AH11h_RecalibrateDrive
[148]38    jmp     Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
[84]39%else
[148]40    push    Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
[162]41    ; Fall to AH11h_RecalibrateDrive
[84]42%endif
[3]43
44
45;--------------------------------------------------------------------
46; AH11h_HRecalibrate
47;   Parameters:
[148]48;       DS:DI:  Ptr to DPT (in RAMVARS segment)
[150]49;       SS:BP:  Ptr to IDEREGS_AND_INTPACK
[3]50;   Returns:
51;       AH:     BIOS Error code
[294]52;       CF:     0 if successful, 1 if error
[3]53;   Corrupts registers:
54;       AL, BX, CX, DX
55;--------------------------------------------------------------------
56AH11h_RecalibrateDrive:
57    ; Recalibrate command is optional, vendor specific and not even
58    ; supported on later ATA-standards. Let's do seek instead.
59    mov     cx, 1                       ; Seek to Cylinder 0, Sector 1
60    xor     dh, dh                      ; Head 0
[28]61    jmp     AHCh_SeekToCylinder
Note: See TracBrowser for help on using the repository browser.