Forum Discussion
Altera_Forum
Honored Contributor
15 years agoLet us implement manually the FSM in a counter that runs from 0 to 77250-1. A counter this size is no problem but the extra logic is phenomenal
signal count : integer range 0 to 77250 := 0;
--put defaults here
case count is
when => 0
all your actions...
when 1 =>
all your actions....
when 77250-1 =>
all your actions
I still find it hard to write 77250 cases... surely you need extra tool to automate the code e.g. C or Matlab m file