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

📄 kcom.vhd

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

library ieee;
use ieee.std_logic_1164.all;

entity kcom is
      port(A,B,C,D,E,F,G,H  : in  std_logic;
           T                : out std_logic);
end kcom;

architecture kcom_arc of kcom is
begin
     process(A,B,C,D,E,F,G,H)
     begin
          if(A = E and B=F and C=G and D=H) then
               T <='1';
          else
               T<='0';
          end if;
     end process;
end kcom_arc;


⌨️ 快捷键说明

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