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