mangohaha
Newbie level 5
Is this right? I want to make a 3 input nand gate....
Thanks....
Code VHDL - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 library IEEE; use IEEE.std_logic_1164.all; entity nand3 is port( x: in std_logic; y: in std_logic; z: in std_logic; f: out std_logic); end nand3; architecture behav of nand3 is begin f <= (x nand y nand z); end behav;
Thanks....
Last edited by a moderator: