Ignore:
Timestamp:
Aug 1, 2010, 5:57:24 PM (14 years ago)
Author:
aitotat
google:author:
aitotat
Message:
  • v1.1.1 broke booting from foreign drives, it is now fixed.
  • Improved error handling a bit.
  • Longer DRQ and IRQ timeouts to minimize write timouts with some (bad) CF cards.
  • Default boot menu drive should now be properly selected.
File:
1 edited

Legend:

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

    r3 r28  
    22; Project name  :   IDE BIOS
    33; Created date  :   27.9.2007
    4 ; Last update   :   12.4.2010
     4; Last update   :   29.7.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Int 13h function AH=1h, Read Disk Status.
     
    2828AH1h_HandlerForReadDiskStatus:
    2929    push    ds
     30
    3031    LOAD_BDA_SEGMENT_TO ds, di
    3132    xor     ah, ah                  ; Zero AH
    3233    cmp     ah, [BDA.bHDLastSt]     ; Set CF if error code is non-zero
    33     mov     ah, [BDA.bHDLastSt]
     34    xchg    ah, [BDA.bHDLastSt]     ; Last error to AH, zero to BDA
     35
    3436    pop     ds
    3537    jmp     Int13h_PopDiDsAndReturn
Note: See TracChangeset for help on using the changeset viewer.