Changeset 143 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Boot/BootSector.asm


Ignore:
Timestamp:
Mar 14, 2011, 5:24:48 PM (13 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to XTIDE Universal BIOS:

  • Removed "Boot sector found!" string.
  • Added option to specify display mode for boot menu.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Src/Boot/BootSector.asm

    r130 r143  
    1515;               Cleared if failed to load boot sector
    1616;   Corrupts registers:
    17 ;       AX, CX, DH, DI, (DL if failed to read boot sector)
     17;       AX, CX, DH, SI, DI, (DL if failed to read boot sector)
    1818;--------------------------------------------------------------------
    1919ALIGN JUMP_ALIGN
     
    2828    jne     SHORT .FirstHardDiskSectorNotBootable
    2929.AlwaysBootFromFloppyDriveForBooterGames:
    30     mov     ax, g_szFound
    31     call    BootPrint_BootSectorResultStringFromAX
    3230    stc
    3331    ret
     
    3735    ret
    3836.FirstHardDiskSectorNotBootable:
    39     mov     ax, g_szNotFound
    40     call    BootPrint_BootSectorResultStringFromAX
     37    mov     si, g_szBootSectorNotFound
     38    call    BootMenuPrint_NullTerminatedStringFromCSSIandSetCF
    4139    clc
    4240    ret
Note: See TracChangeset for help on using the changeset viewer.