📄 v11_4.vhd
字号:
library ieee;
use ieee.std_logic_1164.all;
entity V11_4 is
port(b : in std_logic;
clk : in std_logic;
a : out std_logic);
end V11_4;
architecture A_V11_4 of V11_4 is
begin
process
begin
wait until clk = '1' and clk'event;
a <= b;
end process;
end A_V11_4 ;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -