Fix regression for EMU EMAX

This commit is contained in:
Michael McMaster 2019-05-22 19:56:46 +10:00
parent 3b4a7605c5
commit 076117156e
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}
}
}