Ignore:
Timestamp:
Mar 12, 2012, 1:33:24 PM (12 years ago)
Author:
krille_n_@…
google:author:
krille_n_@hotmail.com
Message:

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:
1 edited

Legend:

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

    r294 r332  
    2525;--------------------------------------------------------------------
    2626AH8h_HandlerForReadDiskDriveParameters:
    27     test    di,di
    28     jnz     SHORT .OurDrive
     27    test    di, di
     28    jz      SHORT .NotOurDrive
    2929
    30     call    Int13h_CallPreviousInt13hHandler
    31     jnc     SHORT .MidGame
    32     jmp     Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
    33 
    34 .OurDrive:
    3530    call    AH8h_GetDriveParameters
    3631
     
    6762    jmp     Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
    6863%endif
     64
     65.NotOurDrive:
     66    call    Int13h_CallPreviousInt13hHandler
     67    jnc     SHORT .MidGame
     68    jmp     Int13h_ReturnFromHandlerAfterStoringErrorCodeFromAH
    6969
    7070
     
    114114
    115115%ifdef MODULE_SERIAL_FLOPPY
    116     mov     bl,[di+DPT.bFlagsHigh]
     116    mov     bl, [di+DPT.bFlagsHigh]
    117117%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS             ; not sure why this is needed for preprocessor-only
    118     eSHR_IM bl,FLGH_DPT_SERIAL_FLOPPY_TYPE_FIELD_POSITION
     118    eSHR_IM bl, FLGH_DPT_SERIAL_FLOPPY_TYPE_FIELD_POSITION
    119119%endif
    120120%endif
Note: See TracChangeset for help on using the changeset viewer.