Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ruck314 committed Dec 4, 2024
1 parent c8e5914 commit ce86e63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protocols/saci/saci2/rtl/Saci2Coordinator.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ce86e63

Please sign in to comment.