📄 t51.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 + -