Guest
#3630374
Hi all!
I have an idea for a code I am writing but I don't know if it's
possible. Let me explain:
I want to connect a component with an other in function of a signal.
A thing like this:
case wave_type is
when sinus => V_pos: sinus_wave generic map();
port map();
V_neg: sinus_wave generic map();
port map();
when square => V_pos: square_wave generic map();
port map();
V_neg: square_wave generic map();
port map();
when ..........etc
I have tested that but a signal expression is expected instead of port
map...
Do you know a solution to get what I want? Thank you