Fix regression for EMU EMAX

This commit is contained in:
Michael McMaster 2019-05-22 19:56:46 +10:00
parent 3b4a7605c5
commit 076117156e

View File

@ -401,7 +401,8 @@ void scsiEnterPhase(int phase)
{ {
// XEBEC S1410 manual (old SASI controller) gives 10uSec delay // XEBEC S1410 manual (old SASI controller) gives 10uSec delay
// between phase bits and REQ. // between phase bits and REQ.
CyDelayUs(10); // EMU EMAX needs 100uS ! 10uS is not enough.
CyDelayUs(100);
} }
} }
} }