Changeset 61 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Handlers
- Timestamp:
- Nov 28, 2010, 3:45:50 AM (14 years ago)
- google:author:
- aitotat
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Handlers/Int19h.asm
r28 r61 2 2 ; Project name : IDE BIOS 3 3 ; Created date : 3.8.2007 4 ; Last update : 1.8.20104 ; Last update : 28.11.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Int 19h BIOS functions (Boot Strap Loader). … … 74 74 call Int19h_LoadFirstSectorFromDL 75 75 jc SHORT .FailedToLoadFirstSector 76 77 test dl, 80h 78 jz SHORT .AlwaysBootFromFloppyDriveForBooterGames 76 79 cmp WORD [es:bx+510], 0AA55h ; Valid boot sector? 77 jne SHORT .FirstSectorNotBootable 80 jne SHORT .FirstHardDiskSectorNotBootable 81 .AlwaysBootFromFloppyDriveForBooterGames: 78 82 call BootPrint_BootSectorLoaded 79 83 stc … … 83 87 clc 84 88 ret 85 .First SectorNotBootable:89 .FirstHardDiskSectorNotBootable: 86 90 call BootPrint_FirstSectorNotBootable 87 91 clc
Note:
See TracChangeset
for help on using the changeset viewer.