- 1、本文档共5页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
VHDL的数字频率计实现
5us转换为2s
library ieee;
use ieee.std_logic_1164.all;
entity fdiv is
port(clk:in std_logic;
q:out std_logic);
end fdiv;
architecture a of fdiv is
begin
process(clk)
variable cnt:integer range 0 to 199999;
variable ff: std_logic;
begin
if clkevent and clk=1 then
if cnt199999 then
cnt:=cnt+1;
else
cnt:=0;
ff:=not ff;
end if;
end if;
q=ff;
end process;
end a;
20MHz转换成1Hz
library ieee;
use ieee.std_logic_1164.all;
entity fdiv is
port(clk:in std_logic;
q:out std_logic);
end fdiv;
architecture a of fdiv is
begin
process(clk)
variable cnt:integer range 0 to 99999;
variable ff: std_logic;
begin
if clkevent and clk=1 then
if cnt99999 then
cnt:=cnt+1;
else
cnt:=0;
ff:=not ff;
end if;
end if;
q=ff;
end process;
end a;
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity counter10 is
Port ( clk : in STD_LOGIC;
clr : in STD_LOGIC;
en : in STD_LOGIC;
count : out STD_LOGIC_VECTOR (3downto 0);
cn_out : out STD_LOGIC);
end counter10;
architecture Behavioral of counter10 is
SIGNAL q:STD_LOGIC_VECTOR (3 downto 0);
begin
process(clk,clr,en)
begin
if clr=1 then q=0000;
elsif clkevent and clk=1 then
if en=1 then
if q9 then q=q+1;
else
q=0000;
end if;
end if;
end if;
end process;
process(q)
begin
if q=9 then
cn_out=1;
else
cn_out=0;
end if;
end process;
count=q;
end Behavioral;
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity load1 is
Port ( load : in STD_LOGIC;
din : in STD_LOGIC_VECTOR (23 downto 0);
dout : out STD_LOGIC_VECTOR (23 downto 0));
end load1;
architecture Behavioral of load1 is
begin
begin
if loadevent and load=1 then
dout=din;
end if;
end process;
end Behavioral;
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL
文档评论(0)