📄 t151.vhd
字号:
--
-- This file implements Latch inference on signals in a combinational
-- process using incomplete assignment. The synthesis report should account for one latch.
--
entity TEST is
port( D, EN : in bit;
Q : out bit);
end TEST;
architecture T151 of TEST is
begin
process(D, EN)
begin
if EN='1' then
Q <= D;
end if;
end process;
end T151;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -