V
valentin tihomirov
Guest
Here is example:
U: A_COMPONENT port map (A => A, B => not B);
I've learned for the newsgroup that on-the-fly conversion is not allowed. A
conversion function must be used instead, e.g. the following is compied ok:
port map (A => A, B => "not"(B));
Seems that the "not" function is defined in STD_LOGIC_1164 paclage in IEEE
library together with "and", "or" functions. However, the following cannot
be compiled:
port map (A => A, B => "and"(B, C));
port map (A => A, B => "not"(B and C));
U: A_COMPONENT port map (A => A, B => not B);
I've learned for the newsgroup that on-the-fly conversion is not allowed. A
conversion function must be used instead, e.g. the following is compied ok:
port map (A => A, B => "not"(B));
Seems that the "not" function is defined in STD_LOGIC_1164 paclage in IEEE
library together with "and", "or" functions. However, the following cannot
be compiled:
port map (A => A, B => "and"(B, C));
port map (A => A, B => "not"(B and C));