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

📄 t111.vhd

📁 Workshop vhdl code from Esperan
💻 VHD
字号:
--
-- This file tests for tri-state inference with the 'Z' assignment.
--
library IEEE;
use IEEE.STD_Logic_1164.all;
entity TEST is
	port( A,EN_A : in std_logic;
	      Q : out std_logic);
end TEST;

architecture T111 of TEST is
begin
	process(A, EN_A)
	begin
		if EN_A = '1' then
			Q <= A;
		else
		  	Q <= 'Z';
		end if;
	end process;
end T111;

⌨️ 快捷键说明

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