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

📄 t33.vhd

📁 Workshop vhdl code from Esperan
💻 VHD
字号:
--
-- This file tests support for Top level generics. Your synthesis tool
-- should allow you to set up the value for the generic SIZE prior synthesis.
--
entity TEST is
	generic (SIZE : integer);
	port( 	A,B : in  bit_vector(SIZE -1 downto 0);
		Z   : out bit_vector(SIZE -1 downto 0));
end TEST;
architecture RTL of TEST is
begin
	Z <= A and B;
end RTL;

⌨️ 快捷键说明

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