?? nand0_1.vhd
字號:
library ieee;
Use ieee.std_logic_1164.all;
entity nand0_1 is
port(X2:in std_logic;
out2:out std_logic);
end entity nand0_1;
architecture nand_0 of nand0_1 is
begin
out2<=not X2;
end architecture nand_0;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -