Changeset 281 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS
- Timestamp:
- Feb 28, 2012, 6:18:11 PM (13 years ago)
- google:author:
- aitotat@gmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Device/IDE/IdeCommand.asm
r279 r281 189 189 ret 190 190 191 ; Ignore previously unsupported command (for example some SET FEATURES subcommand)191 ; Ignore errors from IDE Error Register (set by previous command) 192 192 .ErrorWhenSelectingMasterOrSlave: 193 sub ah, 1 ; Clear CF194 jz SHORT .IgnoreABRTerror ; RET_HD_INVALID == 1195 inc ah196 stc ; Restore error197 . IgnoreABRTerror:193 cmp ah, RET_HD_TIMEOUT ; Do not ignore timeout 194 stc 195 je SHORT .ReturnWithErrorCodeInAHandCF 196 xor ah, ah ; No errors 197 .ReturnWithErrorCodeInAHandCF: 198 198 ret 199 199
Note:
See TracChangeset
for help on using the changeset viewer.