Changeset 592 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Initialization/AdvancedAta/Vision.asm
- Timestamp:
- Jun 25, 2018, 10:29:27 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Initialization/AdvancedAta/Vision.asm
r589 r592 131 131 ; AH: QDI Vision Controller ID 132 132 ; Returns: 133 ; AL: Max supported PIO mode 134 ; AH: FLGH_DPT_IORDY if IORDY supported, zero otherwise133 ; AL: Max supported PIO mode (only if ZF set) 134 ; AH: ~FLGH_DPT_IORDY if IORDY not supported, -1 otherwise (only if ZF set) 135 135 ; BX: Min PIO Cycle Time (only if ZF set) 136 136 ; ZF: Set if PIO limit necessary … … 142 142 cmp ah, ID_QD6500 143 143 jne SHORT .NoNeedToLimitForQD6580 144 145 mov ax, 2 ; Limit to PIO 2 because QD6500 does not support IORDY 144 mov ax, (~FLGH_DPT_IORDY & 0FFh) << 8 | 2 ; Limit to PIO 2 because QD6500 does not support IORDY 146 145 mov bx, PIO_2_MIN_CYCLE_TIME_NS 147 146 .NoNeedToLimitForQD6580:
Note:
See TracChangeset
for help on using the changeset viewer.