Forum Discussion
Altera_Forum
Honored Contributor
7 years agoThe work around is to use the synopsys std_logic_misc library and use the or_reduce function:
use ieee.std_logic_misc.all;
ack <= or_reduce(ack_vector);
The work around is to use the synopsys std_logic_misc library and use the or_reduce function:
use ieee.std_logic_misc.all;
ack <= or_reduce(ack_vector);