Changeset 492 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Handlers/Int19h
- Timestamp:
- Dec 21, 2012, 1:01:55 AM (12 years ago)
- google:author:
- gregli@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Handlers/Int19h/BootSector.asm
r428 r492 33 33 ; AX, CX, DH, SI, DI, (DL if failed to read boot sector) 34 34 ;-------------------------------------------------------------------- 35 BootSector_TryToLoadFromDriveDL :35 BootSector_TryToLoadFromDriveDL_AndBoot: 36 36 call DetectPrint_TryToBootFromDL 37 37 call LoadFirstSectorFromDriveDL … … 44 44 .AlwaysBootFromFloppyDriveForBooterGames: 45 45 stc 46 ret46 jmp SHORT JumpToBootSector_or_RomBoot 47 47 .FailedToLoadFirstSector: 48 48 call DetectPrint_FailedToLoadFirstSector 49 clc50 49 ret 51 50 .FirstHardDiskSectorNotBootable: 52 51 mov si, g_szBootSectorNotFound 53 52 call DetectPrint_NullTerminatedStringFromCSSIandSetCF 54 clc55 53 ret 54 55 %ifndef CHECK_FOR_UNUSED_ENTRYPOINTS 56 %ifdef MODULE_DRIVEXLATE 57 %if TryToBoot_FallThroughTo_BootSector_TryToLoadFromDriveDL_AndBoot <> BootSector_TryToLoadFromDriveDL_AndBoot 58 %error "TryToBoot_FallThroughTo_BootSector_TryToLoadFromDriveDL_AndBoot <> BootSector_TryToLoadFromDriveDL_AndBoot, BootSector must come immediately after int19h.asm" 59 %endif 60 %endif 61 %endif 56 62 57 63 ;--------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.