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

📄 t159.vhd

📁 Workshop vhdl code from Esperan
💻 VHD
字号:
--
-- This file tests support for the use of the 
-- attribute 'not stable for edge detection.
--
entity TEST is 
	port( D, CLK : in bit;
	      Q : out bit);
end TEST;
architecture T159 of TEST is
begin
	process
	begin
		wait until (CLK='1' and (not CLK'stable));
		Q <= D;
	end process;
end T159;

⌨️ 快捷键说明

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