library ieee; use ieee.std_logic_1164.all; entity and2 is port (a, b : std_logic; o : out std_logic); end and2; architecture behav of and2 is begin o <= a and b; end behav; eed' href='http://git.panaceas.org/cgit.cgi/iCE40/ghdl/atom/testsuite/synth/insert01/tb_insert01.vhdl?h=master' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/insert01/tb_insert01.vhdl
blob: 276998541bfa0e896d71f3c225479848497efcf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26