Changeset 61 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Handlers/Int19h.asm


Ignore:
Timestamp:
Nov 28, 2010, 3:45:50 AM (13 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to XTIDE Universal BIOS:

  • AA55h signature no longer required when booting from floppy drives. This should make booter games work.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Src/Handlers/Int19h.asm

    r28 r61  
    22; Project name  :   IDE BIOS
    33; Created date  :   3.8.2007
    4 ; Last update   :   1.8.2010
     4; Last update   :   28.11.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Int 19h BIOS functions (Boot Strap Loader).
     
    7474    call    Int19h_LoadFirstSectorFromDL
    7575    jc      SHORT .FailedToLoadFirstSector
     76
     77    test    dl, 80h
     78    jz      SHORT .AlwaysBootFromFloppyDriveForBooterGames
    7679    cmp     WORD [es:bx+510], 0AA55h        ; Valid boot sector?
    77     jne     SHORT .FirstSectorNotBootable
     80    jne     SHORT .FirstHardDiskSectorNotBootable
     81.AlwaysBootFromFloppyDriveForBooterGames:
    7882    call    BootPrint_BootSectorLoaded
    7983    stc
     
    8387    clc
    8488    ret
    85 .FirstSectorNotBootable:
     89.FirstHardDiskSectorNotBootable:
    8690    call    BootPrint_FirstSectorNotBootable
    8791    clc
Note: See TracChangeset for help on using the changeset viewer.