From 076117156e1d8fe3c402436e752094c6ab66c756 Mon Sep 17 00:00:00 2001 From: Michael McMaster Date: Wed, 22 May 2019 19:56:46 +1000 Subject: [PATCH] Fix regression for EMU EMAX --- software/SCSI2SD/src/scsiPhy.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/software/SCSI2SD/src/scsiPhy.c b/software/SCSI2SD/src/scsiPhy.c index 275cc71..46f6653 100755 --- a/software/SCSI2SD/src/scsiPhy.c +++ b/software/SCSI2SD/src/scsiPhy.c @@ -401,7 +401,8 @@ void scsiEnterPhase(int phase) { // XEBEC S1410 manual (old SASI controller) gives 10uSec delay // between phase bits and REQ. - CyDelayUs(10); + // EMU EMAX needs 100uS ! 10uS is not enough. + CyDelayUs(100); } } }