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


Ignore:
Timestamp:
Mar 4, 2011, 5:54:41 PM (13 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to XTIDE Universal BIOS:

  • Boot menu finally works but timeout and drive numbers not yet implemented.
File:
1 edited

Legend:

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

    r128 r130  
    2828    jne     SHORT .FirstHardDiskSectorNotBootable
    2929.AlwaysBootFromFloppyDriveForBooterGames:
    30     mov     bx, g_szFound
    31     call    BootPrint_BootSectorResultStringFromBX
     30    mov     ax, g_szFound
     31    call    BootPrint_BootSectorResultStringFromAX
    3232    stc
    3333    ret
     
    3737    ret
    3838.FirstHardDiskSectorNotBootable:
    39     mov     bx, g_szNotFound
    40     call    BootPrint_BootSectorResultStringFromBX
     39    mov     ax, g_szNotFound
     40    call    BootPrint_BootSectorResultStringFromAX
    4141    clc
    4242    ret
     
    6666    dec     di                              ; Decrement retry counter
    6767    jnz     SHORT .ReadRetryLoop            ; Loop while retries left
    68 ALIGN JUMP_ALIGN
    6968.Return:
    7069    ret
Note: See TracChangeset for help on using the changeset viewer.