?? t154.vhd
字號:
--
-- This file implements Register inference on signals in clocked processes.
-- In this example a flip-flop will be infered on the signal Q.
--
entity TEST is
port( D, CLK : in bit;
Q : out bit);
end TEST;
architecture T154 of TEST is
begin
process(CLK)
begin
if (CLK'event and CLK='1') then
Q <= D;
end if;
end process;
end T154;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -