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

📄 t19.vhd

📁 Workshop vhdl code from Esperan
💻 VHD
字号:
-- 
-- This file tests support for the use of concatenation with arrays.
--
entity TEST is
	port(	A,B,C,D : in  bit;
	     	Z 	: out bit_vector(3 downto 0));
end TEST;
architecture T19 of TEST is 
	subtype NIBBLE is bit_vector(3 downto 0);
	type T_A_OF_A is array (0 to 7) of NIBBLE; 
	signal MY_ARRAY_A: T_A_OF_A;
begin 
	MY_ARRAY_A(0) <= A&B&C&D;
	Z <= MY_ARRAY_A(0);  
end T19;

⌨️ 快捷键说明

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