Ignore:
Timestamp:
Jul 7, 2018, 9:53:24 AM (6 years ago)
Author:
aitotat
Message:
  • Int 19h reset handler now tries to boot from drive A before warm reset. This should help to get INT 10h hooked before launching booter games (meaning system reset without reseting interrupt vector table).
  • Win 95 hack temporarily removed (module not included by default). Very limited testing shows that CMOS hack seems to work with AMI bios but locks on Award BIOS.
File:
1 edited

Legend:

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

    r568 r595  
    3535BootSector_TryToLoadFromDriveDL_AndBoot:
    3636    call    DetectPrint_TryToBootFromDL
    37     call    LoadFirstSectorFromDriveDL
     37    call    BootSector_LoadFirstSectorFromDriveDL
    3838    jnc     SHORT .FirstSectorLoadedToESBX
    3939
     
    6060.AlwaysBootFromFloppyDriveForBooterGames:
    6161    stc     ; Boot Sector loaded successfully
    62     jmp     SHORT Int19_JumpToBootSectorOrRomBoot
     62    jmp     SHORT Int19h_JumpToBootSectorOrRomBoot
    6363
    6464.FirstHardDiskSectorNotBootable:
     
    7171
    7272;--------------------------------------------------------------------
    73 ; LoadFirstSectorFromDriveDL
     73; BootSector_LoadFirstSectorFromDriveDL
    7474;   Parameters:
    7575;       DL:     Drive to boot from (translated, 00h or 80h)
     
    8282;       AL, CX, DH, DI
    8383;--------------------------------------------------------------------
    84 LoadFirstSectorFromDriveDL:
     84BootSector_LoadFirstSectorFromDriveDL:
    8585    LOAD_BDA_SEGMENT_TO es, bx              ; ES:BX now points to...
    8686    mov     bx, BOOTVARS.rgbBootSect        ; ...boot sector location
Note: See TracChangeset for help on using the changeset viewer.