急啊!!用vhdl编写一个两输入与非门的程序怎么写啊?急死人啊!!

2025-03-13 05:52:15
推荐回答(3个)
回答1:

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);
end art;

回答2:

这个。。。本人用的是verilog
就写个门 一条语句搞定

回答3:

c<=not(a and b);