Forum Discussion
Altera_Forum
Honored Contributor
13 years agoGenerate statements are used to create different static implementations.
What you are really after is using en_logic as a multiplexer control.
in(1 to 4) <= rx_inp(1 to 4) when (en_logic = '0') else rx_inp(5 to 8);
Cheers, Dave