v6_10.vhd
来自「台湾全华科技VHDL教材实例」· VHDL 代码 · 共 37 行
VHD
37 行
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 + =
减小字号Ctrl + -
显示快捷键?