Ignore:
Timestamp:
Jul 28, 2010, 6:53:32 PM (14 years ago)
Author:
aitotat
google:author:
aitotat
Message:
  • v1.1.1 broke booting from foreign drives, it is now fixed.
  • Fixed a bug where Disk Parameter Table was accessed with wrong pointer register after writing last block.
  • Cleaned AH=00h, Disk Controller Reset a bit.
  • Timeout errors might now get translated for better error codes on certain situations.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Src/Initialization/Initialize.asm

    r23 r27  
    22; Project name  :   IDE BIOS
    33; Created date  :   23.3.2010
    4 ; Last update   :   1.7.2010
     4; Last update   :   28.7.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Functions for initializing the BIOS.
     
    418418ALIGN JUMP_ALIGN
    419419Initialize_ResetDetectedDrives:
    420     xor     ah, ah              ; Disk Controller Reset
    421     mov     dl, 80h             ; Reset all floppy drives and hard disks
    422     int     INTV_DISK_FUNC
    423     ret
     420    xor     bx, bx
     421    call    ResetFloppyDrivesWithInt40h
     422    mov     bl, 80h
     423    call    ResetForeignHardDisks
     424    jmp     AH0h_ResetHardDisksHandledByOurBIOS
Note: See TracChangeset for help on using the changeset viewer.