Changeset 487 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc
- Timestamp:
- Dec 5, 2012, 5:54:46 PM (12 years ago)
- google:author:
- aitotat@gmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Inc/Controllers/XTCF.inc
r482 r487 23 23 %define XTCF_INC 24 24 25 XTCF_DMA_MODE_MAX_BLOCK_SIZE EQU 64 ; Sectors26 25 OFFSET_TO_CONTROL_BLOCK_REGISTERS EQU 8 27 26 DEFAULT_XTCF_SECTOR_WINDOW_SEGMENT EQU 0D800h 27 28 ; XT-CF requires that block must be less than 128 sectors (64 kiB). 29 ; Instead of limiting block size to 64, we limit it to 32 (16 kiB). 30 ; Transferring more than 16 kiB with 8237 DMA controller block or demand 31 ; mode might interfere with DRAM refresh on XT systems. 32 XTCF_DMA_MODE_MAX_BLOCK_SIZE EQU 32 ; Sectors 28 33 29 34 ; Possible base addresses. Note that all XT-CF IDE registers are SHL 1 compared
Note:
See TracChangeset
for help on using the changeset viewer.