Changeset 130 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Boot/BootSector.asm
- Timestamp:
- Mar 4, 2011, 5:54:41 PM (14 years ago)
- google:author:
- aitotat
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Boot/BootSector.asm
r128 r130 28 28 jne SHORT .FirstHardDiskSectorNotBootable 29 29 .AlwaysBootFromFloppyDriveForBooterGames: 30 mov bx, g_szFound31 call BootPrint_BootSectorResultStringFrom BX30 mov ax, g_szFound 31 call BootPrint_BootSectorResultStringFromAX 32 32 stc 33 33 ret … … 37 37 ret 38 38 .FirstHardDiskSectorNotBootable: 39 mov bx, g_szNotFound40 call BootPrint_BootSectorResultStringFrom BX39 mov ax, g_szNotFound 40 call BootPrint_BootSectorResultStringFromAX 41 41 clc 42 42 ret … … 66 66 dec di ; Decrement retry counter 67 67 jnz SHORT .ReadRetryLoop ; Loop while retries left 68 ALIGN JUMP_ALIGN69 68 .Return: 70 69 ret
Note:
See TracChangeset
for help on using the changeset viewer.