Forum Discussion
Altera_Forum
Honored Contributor
14 years agoCoding style to minimize combinational path delay?
I'm tuning my logic to meet timing. I have a long continuous assignment statement that outputs a signal based on the current state in my FSM. The below implementation results in a long mux chain. Is ...
Altera_Forum
Honored Contributor
14 years agoIn no vhdl expert, but maybe use single bit values for each of the 'curstate' values so that each line becomes:
(curstate & XXX ? 7'hx : 0) |which is simple logic. Dunno if that ?: gets optimised away (easy to do).