Pages

Recent updates

Nand gate

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

0 comments: