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

📄 t51.vhd

📁 Workshop vhdl code from Esperan
💻 VHD
字号:
--
-- This file tests support for the synthesis of While condition when evaluated as a constant.
--
entity TEST is
	port (A : in  bit_vector (7 downto 0);
	      B : in  bit;
	      Z : out bit_vector (7 downto 0));
end TEST;
architecture T51 of TEST is
begin
	process(B, A)
		variable I : integer;
	begin
		I:= 0;
		while (I < 8) loop
			Z(I) <= B and A(i);
			I := I + 1;
		end loop;
	end process;
end T51;			

⌨️ 快捷键说明

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