C
Christiano
Guest
In some codes that exist component instantiation, sometimes it's like this:
X: Gate generic map (N => 5) port map (a, b);
and other times as well:
X: Gate generic map (5) port map (a, b);
Is there any difference or particular reason to use one or the other?
X: Gate generic map (N => 5) port map (a, b);
and other times as well:
X: Gate generic map (5) port map (a, b);
Is there any difference or particular reason to use one or the other?