t154.vhd
来自「Workshop vhdl code from Esperan」· VHDL 代码 · 共 19 行
VHD
19 行
--
-- 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 + =
减小字号Ctrl + -
显示快捷键?