Skip to content

Commit

Permalink
For ASIC designs it is best to declare a 'Default' state which return…
Browse files Browse the repository at this point in the history
…s to INIT_S state
  • Loading branch information
ruck314 committed Jun 19, 2024
1 parent fe9b980 commit 2d4f9ca
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions protocols/sugoi/rtl/SugoiSubordinateFsm.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,9 @@ begin
v.state := RX_SOF_S;

end if;
----------------------------------------------------------------------
when others => -- For ASIC designs it is best to declare a ’Default’ state which returns to INIT_S state
v := REG_INIT_C;
----------------------------------------------------------------------
end case;

Expand Down

0 comments on commit 2d4f9ca

Please sign in to comment.