Ignore:
Timestamp:
Sep 24, 2010, 6:05:18 PM (14 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Errors are now being checked when calling previous INT 13h handler on AH=08h Read Disk Drive Parameters. This fixes infinite drive checking loop on unofficial MS-DOS 7.10 installer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Src/Handlers/Int13h/AH8h_HParams.asm

    r35 r43  
    22; Project name  :   IDE BIOS
    33; Created date  :   27.9.2007
    4 ; Last update   :   24.8.2010
     4; Last update   :   24.9.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Int 13h function AH=8h, Read Disk Drive Parameters.
     
    4343.GetDriveParametersForForeignHardDiskInDL:
    4444    call    Int13h_CallPreviousInt13hHandler
     45    jc      SHORT .ReturnErrorFromPreviousInt13hHandler
    4546    call    RamVars_GetCountOfKnownDrivesToDL
    4647    jmp     Int13h_ReturnWithValueInDL
     48.ReturnErrorFromPreviousInt13hHandler:
     49    jmp     Int13h_PopDiDsAndReturn
    4750
    4851
Note: See TracChangeset for help on using the changeset viewer.