Changeset 588 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/VariablesAndDPTs
- Timestamp:
- Jun 3, 2015, 12:30:54 PM (9 years ago)
- google:author:
- krille_n_@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/VariablesAndDPTs/AccessDPT.asm
r568 r588 94 94 ; Returns: 95 95 ; AH: Device Type 96 ; ZF: Setif XTCF97 ; Clearedif some other device96 ; CF: Cleared if XTCF 97 ; Set if some other device 98 98 ; Corrupts registers: 99 99 ; Nothing … … 101 101 AccessDPT_IsThisDeviceXTCF: 102 102 mov ah, [di+DPT_ATA.bDevice] 103 cmp ah, DEVICE_8BIT_XTCF_PIO8 104 je SHORT .DeviceIsXTCF 105 cmp ah, DEVICE_8BIT_XTCF_PIO8_WITH_BIU_OFFLOAD 106 je SHORT .DeviceIsXTCF 107 cmp ah, DEVICE_8BIT_XTCF_DMA 108 .DeviceIsXTCF: 103 cmp ah, FIRST_XTCF_DEVICE 104 jb SHORT .DeviceIsNotXTCF 105 cmp ah, LAST_XTCF_DEVICE+1 106 cmc 107 .DeviceIsNotXTCF: 109 108 ret 110 109 %endif ; MODULE_8BIT_IDE_ADVANCED
Note:
See TracChangeset
for help on using the changeset viewer.