knand2.vhd

来自「Fire&password数字系统实验」· VHDL 代码 · 共 14 行

VHD
14
字号
--description two inputs and_not gate description
library ieee;
use ieee.std_logic_1164.all;

entity knand2 is
      port(A,B  : in std_logic;
           C    : out std_logic);
end knand2;

architecture knand2_arc of knand2 is
begin
      C <= not (A and B);
end knand2_arc;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?