-- nand_1bit.vhd
LIBRARY ieee; USE ieee.std_logic_1164.all; USE ieee.std_logic_arith.all;
ENTITY nand_1bit IS PORT ( x, y : in std_logic; o : out std_logic); END nand_1bit;
ARCHITECTURE maxpld OF nand_1bit IS BEGIN
o <= x NAND y;
END maxpld;