library ieee;use ieee.std_logic_1164.all;entity yufei isport(a,b:in std_logic; c:out std_logic);end entity;architecture art of yufei isbeginc<=not(a and b);end art;
这个。。。本人用的是verilog就写个门 一条语句搞定
c<=not(a and b);