欢迎来到天天文库
浏览记录
ID:22909231
大小:75.00 KB
页数:12页
时间:2018-11-01
《《eda专周程序》word版》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、libraryieee;useieee.std_logic_1164.all;useieee.std_logic_unsigned.all;entitydianzzisport(clk,clrm,stop:instd_logic;----时钟/清零信号secm1,secm0:outstd_logic_vector(3downto0);----秒高位/低位co:outstd_logic);-------输出/进位信号enddianzz;architectureSECofdianzzissignalclk1,DOUT2:std_logic;beginproc
2、ess(clk,clrm)variablecnt1,cnt0:std_logic_vector(3downto0);---计数VARIABLECOUNT2:INTEGERRANGE0TO10;beginIFCLK'EVENTANDCLK='1'THENIFCOUNT2>=0ANDCOUNT2<10THENCOUNT2:=COUNT2+1;ELSECOUNT2:=0;DOUT2<=NOTDOUT2;ENDIF;ENDIF;ifclrm='1'then----当clr为1时,高低位均为0cnt1:="0000";cnt0:="0000";elsifclk'e
3、ventandclk='1'thenifstop='1'thencnt0:=cnt0;cnt1:=cnt1;endif;ifcnt1="1001"andcnt0="1000"then----当记数为98(实际是经过59个记时脉冲)co<='1';----进位cnt0:="1001";----低位为9elsifcnt0<"1001"then----小于9时cnt0:=cnt0+1;----计数--elsifcnt0="1001"then--clk1<=notclk1;elsecnt0:="0000";ifcnt1<"1001"then----高位小于9时c
4、nt1:=cnt1+1;elsecnt1:="0000";co<='0';endif;endif;endif;secm1<=cnt1;secm0<=cnt0;endprocess;endSEC;libraryieee;useieee.std_logic_1164.all;useieee.std_logic_unsigned.all;entitySECONDisport(clk,clr:instd_logic;----时钟/清零信号sec1,sec0:outstd_logic_vector(3downto0);----秒高位/低位co:outstd_log
5、ic);-------输出/进位信号endSECOND;architectureSECofSECONDisbeginprocess(clk,clr)variablecnt1,cnt0:std_logic_vector(3downto0);---计数beginifclr='1'then----当ckr为1时,高低位均为0cnt1:="0000";cnt0:="0000";elsifclk'eventandclk='1'thenifcnt1="0101"andcnt0="1000"then----当记数为58(实际是经过59个记时脉冲)co<='1';---
6、-进位cnt0:="1001";----低位为9elsifcnt0<"1001"then----小于9时cnt0:=cnt0+1;----计数elsecnt0:="0000";ifcnt1<"0101"then----高位小于5时cnt1:=cnt1+1;elsecnt1:="0000";co<='0';endif;endif;endif;sec1<=cnt1;sec0<=cnt0;endprocess;endSEC;libraryieee;useieee.std_logic_1164.all;useieee.std_logic_unsigned.all
7、;entityMINUTEisport(clk,en:instd_logic;min1,min0:outstd_logic_vector(3downto0);co:outstd_logic);endMINUTE;architectureMINofMINUTEisbeginprocess(clk)variablecnt1,cnt0:std_logic_vector(3downto0);beginifclk'eventandclk='1'thenifen='1'thenifcnt1="0101"andcnt0="1000"thenco<='1';cnt0:=
8、"1001";elsifcnt0<"1001"thencnt0:=cnt0+1;
此文档下载收益归作者所有