Pages

Recent updates

Basic And gate

library ieee;
use ieee.std_logic_1164.all;
Entity and_gate is
port(a,b:in std_logic;c:out std_logic);
end and_gate;
architecture design of and_gate is
begin
c<=(a and b);
end design;

0 comments: