⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 kf_f.vhd

📁 Fire&password数字系统实验
💻 VHD
字号:

library ieee;
use ieee.std_logic_1164.all;

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

architecture kf_f_arc of kf_f is
      component knand2
         port(A,B  : in std_logic;
              C    : out std_logic);
      end component;
      signal tmp ,tmp1: std_logic;
begin
      U0 :knand2 port map(A,tmp,tmp1);
      U1 :knand2 port map(tmp1,B,tmp);
      C<=tmp;
end kf_f_arc;

⌨️ 快捷键说明

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