V
valentin tihomirov
Guest
entity E is
generic (P: integer)
end E;
-- this configuration asserts an arch to the entity for sinthesis/simulation
providing actual 1 for P
configuration BIND of E is
generic map(P => 1); -- causes error
for A
end for;
end BIND;
I feel difficulty in specifying the generic in configuration. Why?
generic (P: integer)
end E;
-- this configuration asserts an arch to the entity for sinthesis/simulation
providing actual 1 for P
configuration BIND of E is
generic map(P => 1); -- causes error
for A
end for;
end BIND;
I feel difficulty in specifying the generic in configuration. Why?