X
xecron
Guest
how to generic map (a1)
ejem.
entity test is
end test;
architecture cuerpo_test of test is
signal AA integer; -- NO CONSTANT
begin
....
....
llamada: entity work.red (estructural) generic map ( AA ) port map(
......)
end cuerpo test;
entity red
generic (AA :integer);
port (.......);
end red
ejem.
entity test is
end test;
architecture cuerpo_test of test is
signal AA integer; -- NO CONSTANT
begin
....
....
llamada: entity work.red (estructural) generic map ( AA ) port map(
......)
end cuerpo test;
entity red
generic (AA :integer);
port (.......);
end red