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

2025年03月13日 05:52
有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);