Changeset 444 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc
- Timestamp:
- Aug 28, 2012, 4:05:55 PM (12 years ago)
- google:author:
- aitotat@gmail.com
- Location:
- trunk/XTIDE_Universal_BIOS/Inc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Inc/DeviceIDE.inc
r432 r444 27 27 ; Polling timeout delays (system timer ticks, 1 tick = 54.9 ms) 28 28 TIMEOUT_DRQ EQU 255 ; 14 s (some CF cards occasionally have long write delays) 29 TIMEOUT_ IDENTIFY_DEVICE EQU(500/55) ; 500 ms29 TIMEOUT_SELECT_DRIVE_DURING_DRIVE_DETECTION EQU (500/55) ; 500 ms 30 30 TIMEOUT_MOTOR_STARTUP EQU (10000/55) ; 10 s 31 31 TIMEOUT_MAXIMUM EQU 255 ; We would actually want 31 seconds here but I don't think there are so slow drives -
trunk/XTIDE_Universal_BIOS/Inc/RamVars.inc
r443 r444 37 37 .wNewStackOffset resb 2 38 38 %endif 39 .wDrvDetectSignature: ; Signature when BIOS is in drive detection mode 39 40 .fpOldI13h resb 4 ; Far pointer to old INT 13h handler 40 .wSignature resb 2 ; Sign for finding stolen 1 kiB41 .wSignature resb 2 ; Sign for finding stolen 1...64 kiB 41 42 .bTimeoutTicksLeft resb 1 42 43 .bLastTimeoutUpdate resb 1 … … 53 54 %endif 54 55 endstruc 56 57 ; Note!!! .wDrvDetectSignature and .wSignature are intentionally in different locations. 58 RAMVARS_RAM_SIGNATURE EQU "Xu" ; RAMVARS signature for .wSignature 59 RAMVARS_DRV_DETECT_SIGNATURE EQU 5A5Ah ; Signature when BIOS is in drive detection mode 60 55 61 56 62 … … 83 89 %endif 84 90 85 RAMVARS_SIGNATURE EQU "Xu" ; RAMVARS signature for .wSignature 91 86 92 87 93 ;
Note:
See TracChangeset
for help on using the changeset viewer.