library ieee
use ieee.std_logic_1164.all
entity yufei is ---定义实体
port(a,b:in std_logic ---定义两个输入端口
c:out std_logic) ---一输出端口
end entity
architecture art of yufei is--定义结构体
begin
c<=not(a and b) --c=!(a&b)
end art
module gate3(input a,
input b,
input c,
output y
)
assign y=~(a&b&c)
endmodule
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)