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

📄 t156.vhd

📁 Workshop vhdl code from Esperan
💻 VHD
字号:
--
-- 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -