dff_2.vhd
来自「本源码介绍了ADS7844 AD转换芯片的VHDL控制器。」· VHDL 代码 · 共 17 行
VHD
17 行
library ieee;
use ieee.std_logic_1164.all;
entity dff_2 is
port(d:in std_logic;
clk:in std_logic;
q:out std_logic);
end dff_2;
architecture rtl of dff_2 is
begin
dff_process:process(clk)
begin
if (clk'event and clk='1') then
q<=d;
end if;
end process dff_process;
end rtl;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?