📄 cl1nand3.vhd
字号:
------------------------------------------------------------------------------------ -- Create Date: 17:09:55 09/23/2008 -- Design Name: Chu Kuang Liu -- Module Name: cl1nand3 - Behavioral -- Affiliation: Prairie View A&M University -- Course: ELEG6103 -- Description: 3 input nand gate, behaviral VHDL-- Revision 0.01 - File Created-- Additional Comments: ------------------------------------------------------------------------------------library IEEE;use IEEE.STD_LOGIC_1164.ALL;use IEEE.STD_LOGIC_ARITH.ALL;use IEEE.STD_LOGIC_UNSIGNED.ALL;---- Uncomment the following library declaration if instantiating---- any Xilinx primitives in this code.--library UNISIM;--use UNISIM.VComponents.all;entity cl1nand3 is Port ( a : in STD_LOGIC; b : in STD_LOGIC; c : in STD_LOGIC; z : out STD_LOGIC);end cl1nand3;architecture Behavioral of cl1nand3 isbeginz<=(not(a and b and c)) after 130ps; end Behavioral;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -