?? knand2.vhd
字號:
--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;
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -