From ce86e6389f4e24d1249d0fe56218059cc066e9cc Mon Sep 17 00:00:00 2001 From: Larry Ruckman Date: Tue, 3 Dec 2024 19:16:33 -0800 Subject: [PATCH] bug fix --- protocols/saci/saci2/rtl/Saci2Coordinator.vhd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/saci/saci2/rtl/Saci2Coordinator.vhd b/protocols/saci/saci2/rtl/Saci2Coordinator.vhd index ae6d632597..2552f6b875 100644 --- a/protocols/saci/saci2/rtl/Saci2Coordinator.vhd +++ b/protocols/saci/saci2/rtl/Saci2Coordinator.vhd @@ -245,7 +245,7 @@ begin if (r.saciClkFalling = '1') then v.shiftCount := r.shiftCount + 1; v.shiftReg := r.shiftReg(r.shiftReg'high-1 downto r.shiftReg'low) & saciRspSync(rspIndex); - if (r.shiftCount = 64) then + if (r.shiftCount = 62) then v.state := ACK_S; end if; end if;