------------------------------------------------------------------------------- -- CSE 471 HW #2 ; VHDL Design -- Section : 2 -- Designer : Meghan Hoke -- Date : 8/30/2001 -- File : nand3.vhd -- Description : 3 input nand gate ------------------------------------------------------------------------------- library IEEE; use IEEE.std_logic_1164.all; entity nand3 is port (a, b, c : in std_logic; z : out std_logic); end nand3; architecture beha of nand3 is begin -- beha z <= (not (a and b and c)) after 12 ns; end beha;