Changeset 435 in xtideuniversalbios
- Timestamp:
- Jun 19, 2012, 6:30:04 PM (12 years ago)
- google:author:
- aitotat@gmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Handlers/Int13h/AH0h_HReset.asm
r434 r435 102 102 ; We only need to reset drives from the previous INT 13h handler. 103 103 ; There could be more in chain but let the previous one handle them. 104 mov dl, 80h 105 cmp [RAMVARS.bFirstDrv], dl 106 je SHORT NoForeignDrivesToReset 107 108 cmp bl, [RAMVARS.bFirstDrv] 109 eCMOVB dl, bl ; DL when entering AH=00h 104 mov dl, [RAMVARS.bFirstDrv] 105 or dl, 80h ; We may not have our drives at all! 106 MIN_U dl, bl ; BL is always Hard Drive number 110 107 111 108 xor ah, ah ; Disk Controller Reset
Note:
See TracChangeset
for help on using the changeset viewer.