A
ALuPin@web.de
Guest
Hi,
I have the following GENERATE structure:
u_cluster : for m in cCLUSTER downto 0 generate
i_inst : xy
port map ( xyz_i => ...);
end generate;
Now I want to do the following:
u_cluster : for m in cCLUSTER downto 0 generate
u_cases: if m=0 or m=2 generate --else : no instantiation
i_inst : xy
port map ( xyz_i => ...);
end generate;
end generate;
How do I build that structure correctly ? Thank you for your
suggestions.
Rgds,
Andre
I have the following GENERATE structure:
u_cluster : for m in cCLUSTER downto 0 generate
i_inst : xy
port map ( xyz_i => ...);
end generate;
Now I want to do the following:
u_cluster : for m in cCLUSTER downto 0 generate
u_cases: if m=0 or m=2 generate --else : no instantiation
i_inst : xy
port map ( xyz_i => ...);
end generate;
end generate;
How do I build that structure correctly ? Thank you for your
suggestions.
Rgds,
Andre