blob: dbf9f81efb97cd26489ca1399d52a7e12c100fb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
entity test_tf is
port(
a: in bit_vector(3 downto 0);
red_and: out bit;
red_nand: out bit;
red_or: out bit;
red_nor: out bit;
red_xor: out bit;
red_xnor: out bit);
end test_tf;
architecture behavior of test_tf is
begin
red_and <= and a;
red_nand <= nand a;
red_or <= or a;
red_nor <= nor a;
red_xor <= xor a;
red_xnor <= xnor a;
end behavior;
|