📄 pulse.vhd
字号:
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity pulse is
Port ( clock,en:in std_logic;
clk:out std_logic
);
end pulse;
architecture Behavioral of pulse is
begin
counter: process(clock,en)
variable count2: integer;
variable clk0: std_logic;
begin
if en='0' then
count2:=0;
clk0:='0';
elsif clock'event and clock='1' then
count2:=count2+1;
if count2=16000000 then
clk0:='1';
elsif count2=32000000 then
count2:=0;
clk0:='0';
--end if;
end if;
end if;
clk<=clk0;
end process counter;
end Behavioral;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -