⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dff.vhd

📁 海尔布伦 访问状态机 设计 用FSM方式 verilog HDL 语言描述
💻 VHD
字号:
--d-type flip-flop with asynch reset
library ieee;
use ieee.std_logic_1164.all;
entity dff is
	port(q : out std_logic;
			d, clk, reset : in std_logic);
end dff;

architecture v1 of dff is
begin
	process(clk, reset)
	begin
		if reset = '1' then
			q <= '0';
		elsif rising_edge(clk) then
			q <= d;	 
		end if;
	end process;
end v1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -