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 |
|
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'/>