怎样用VHDL设计含有异步清零和同步时钟使能的16位加法计数器

怎样用VHDL设计含有异步清零和同步时钟使能的16位加法计数器... 怎样用VHDL设计含有异步清零和同步时钟使能的16位加法计数器 展开
 我来答
achillowy
2010-12-19 · TA获得超过304个赞
知道小有建树答主
回答量:143
采纳率:100%
帮助的人:64.4万
展开全部
这个很简单啊,每次时钟来+1就是了。
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;

entity count is
port
(
clk : in std_logic;
rst : in std_logic;
count_out : out std_logic_vector(15 downto 0)
);
end count;

architecture arc of count is
signal count : std_logic_vector(15 downto 0);

begin
process(clk,rst)
begin
if rst = '1' then
count <= (others=>'0');
elsif rising_edge(clk) then
count <= count + 1;
end if;
end process;
count_out <= count;

end arc;
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式