分频器采用VHDL文本输入方式设计,将1MHz的时钟输入信号(clk)分频为1Hz的输出信号(clkfp)。
答案:2 悬赏:20 手机版
解决时间 2021-03-17 08:47
- 提问者网友:捧腹剧
- 2021-03-17 00:15
分频器采用VHDL文本输入方式设计,将1MHz的时钟输入信号(clk)分频为1Hz的输出信号(clkfp)。
最佳答案
- 五星知识达人网友:毛毛
- 2021-03-17 00:34
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity div is
generic(n:integer :=1000000);
port (clk:in std_logic;
q:out std_logic);
end div;
architecture behave of div is
signal count :integer range n-1 downto 0:=n-1;
begin
process(clk)
begin
if rising_edge(clk) then
count<=count-1;
if count>=n/2 then
q<='0';
else
q<='1';
end if;
if count<=0 then
count<=n-1;
end if;
end if;
end process;
end behave;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity div is
generic(n:integer :=1000000);
port (clk:in std_logic;
q:out std_logic);
end div;
architecture behave of div is
signal count :integer range n-1 downto 0:=n-1;
begin
process(clk)
begin
if rising_edge(clk) then
count<=count-1;
if count>=n/2 then
q<='0';
else
q<='1';
end if;
if count<=0 then
count<=n-1;
end if;
end if;
end process;
end behave;
全部回答
- 1楼网友:狂恋
- 2021-03-17 00:40
我手上恰好有这样的一份文档,
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯