Altera_Forum
Honored Contributor
17 years agoConditional assignments with generics
Is it possible in VHDL to assign a signal conditionally based on the value of a generics without creating additional unwanted logic?
I think the following code created logic to evaluate the condition. signal_a <= signal_b when (GENERIC_A > GENERIC_B) else signal_c;