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