div7.vhd
来自「基于Quartus II FPGA/CPLD数字系统设计实例(VHDL源代码文件」· VHDL 代码 · 共 27 行
VHD
27 行
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity div7 is
port(clk:in std_logic;--------时钟
div7:out std_logic);----输出7分频信号
end;
architecture one of div7 is
signal cnt:std_logic_vector(2 downto 0);
signal clk_temp:std_logic;
constant m:integer:=6;-----控制计数器的常量,m=N-1
begin
process(clk)
begin
if clk'event and clk='1' then
if cnt=m then
clk_temp<='1';
cnt<="000";
else
cnt<=cnt+1;
clk_temp<='0';
end if;
end if;
end process;
div7<=clk_temp;
end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?