Changeset 216
- Timestamp:
- 08/18/11 05:00:22 (22 months ago)
- Files:
-
- 1 modified
-
trunk/lisp/lmcons/dcheck.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lisp/lmcons/dcheck.lisp
r215 r216 322 322 ;; Part 3.6 - recalibrate. Marksman needs this if I/O reset has been done. 323 323 (FORMAT T "~&Recalibrate...") 324 (DC-EXEC DC-RECAL 0 0 0 0 NIL 0) 325 (DO () ((NOT (BIT-TEST 1_8 (PHYS-MEM-READ DC-STS-ADR)))) 326 (PROCESS-ALLOW-SCHEDULE)) 324 (DC-RECALIBRATE) 327 325 ;; Part 4 - Test disk bus bits and basic command logic by seeking 328 326 (COND ((NOT BYPASS-SEEKS) … … 405 403 (TERPRI) 406 404 (PRINC '|End of DCHECK. Now run the format program and the ECC test program.|)) 405 406 (DEFUN DC-RESET NIL 407 (PHYS-MEM-WRITE DC-CMD-ADR DC-STOP) 408 (PHYS-MEM-WRITE DC-CMD-ADR 0)) 409 410 (DEFUN DC-RECALIBRATE NIL 411 (DC-EXEC DC-RECAL 0 0 0 0 NIL 0) 412 (DO () ((NOT (BIT-TEST 1_8 (PHYS-MEM-READ DC-STS-ADR)))) 413 (PROCESS-ALLOW-SCHEDULE))) 407 414 408 415 ;;; Compare pattern, set special variables if lose
