gate_clk.vhd
来自「用VHDL语言设计的频率计」· VHDL 代码 · 共 31 行
VHD
31 行
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity gate_clk is
port ( clk : in std_logic;
f : in std_logic;
outclk : out std_logic );
end entity gate_clk;
architecture behave_gateclk of gate_clk is
signal clkkk : std_logic;
begin
process ( clk ,f )
begin
if clk'event and clk = '1' then
if f'event and f = '1' then
clkkk <= '1';
end if;
elsif clk'event and clk = '1' then
if f'event and f = '1' then
clkkk <= '0';
end if;
end if;
end process;
outclk <= clkkk;
end behave_gateclk;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?