t156.vhd

来自「Workshop vhdl code from Esperan」· VHDL 代码 · 共 19 行

VHD
19
字号
--
-- This file tests support for the use of the function
-- call rising_edge() for edge detection.
--
library IEEE;
use IEEE.Std_Logic_1164.all;
entity TEST is 
	port( D, CLK : in std_logic;
	      Q : out std_logic);
end TEST;
architecture T156 of TEST is
begin
	process
	begin
		wait until rising_edge(CLK);
		Q <= D;
	end process;
end T156;

⌨️ 快捷键说明

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