同步复位,同步置数的六十进制计数器
合集下载
相关主题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
同步复位,同步置数的六十进制计数器library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity count60y is
port( clk,clr,en:in std_logic;
carry:out std_logic;
q:out std_logic_vector(5downto 0));
end c ount60y;
architecture art of count60y is
signal cntout:std_logic_vector(5 downto 0); begin
q<=cntout;
process(clk)
begin
if clk'event and c lk='1'then
if clr='1'then
cntout<="000000";
carry<='0';
elsif en='1'then
if cntout="111011"then
cntout<="000000";
carry<='1';
else
cntout<=cntout+'1';
carry<='0';
end i f;
end i f;
end i f;
end p rocess;
end a rt;