数字时钟的综合设计

数字时钟的综合设计

ID:27447028

大小:94.50 KB

页数:8页

时间:2018-12-03

数字时钟的综合设计_第1页
数字时钟的综合设计_第2页
数字时钟的综合设计_第3页
数字时钟的综合设计_第4页
数字时钟的综合设计_第5页
资源描述:

《数字时钟的综合设计》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、数字时钟的综合设计一、设计任务1、具有时、分、秒计时显示功能,最大计时为23:59:59。2、用CPLD/FPGA设计制作成数字时钟的专用芯片,结合LED数码管构成一个能够实现调时和调分的数字时钟。二、总体设计框图FPGA按键LED数码管时钟信号三、模块设计具体化1、设计思想本设计是基于Altera公司的CycloneⅡ系列EP2C35F672C芯片,采用层次化设计方式,先设计底层的器件如秒计数器、分计数器、时计数器、2选1选择器、译码器,顶层设计采用原理图形式,将底层各个器件连接起来组合成一个数字时钟专用芯片。2、VHDL程序代码a、秒计数器

2、程序libraryieee;useieee.std_logic_1164.all;useieee.std_logic_unsigned.all;entitysecondisport(clk:instd_logic;8enmin:outstd_logic;daout:outstd_logic_vector(6downto0));endsecond;Architecturebehaveofsecondissignalcount:std_logic_vector(6downto0);begindaout<=count;process(clk)begi

3、nif(clk'eventandclk='1')thenifcount(3downto0)="1001"thenifcount(6downto4)="101"thencount<="0000000";enmin<='1';elsecount(3downto0)<="0000";count(6downto4)<=count(6downto4)+1;endif;elsecount(3downto0)<=count(3downto0)+1;enmin<='0';endif;endif;endprocess;endbehave;b、分计数器程序libr

4、aryieee;useieee.std_logic_1164.all;useieee.std_logic_unsigned.all;entityminuteisport(clk:instd_logic;enhour:outstd_logic;daout:outstd_logic_vector(6downto0));endminute;Architecturebehaveofminuteissignalcount:std_logic_vector(6downto0);begindaout<=count;process(clk)beginif(cl

5、k'eventandclk='1')thenifcount(3downto0)="1001"thenifcount(6downto4)="101"thencount<="0000000";enhour<='1';8elsecount(3downto0)<="0000";count(6downto4)<=count(6downto4)+1;endif;elsecount(3downto0)<=count(3downto0)+1;enhour<='0';endif;endif;endprocess;endbehave;c、时计数器程序library

6、ieee;useieee.std_logic_1164.all;useieee.std_logic_unsigned.all;entityhourisport(clk:instd_logic;daout:outstd_logic_vector(5downto0));endhour;Architecturebehaveofhourissignalcount:std_logic_vector(5downto0);begindaout<=count;process(clk)beginif(clk'eventandclk='1')thenifcount

7、(5downto4)="10"thenifcount(3downto0)="0011"thencount<="000000";elsecount(3downto0)<=count(3downto0)+1;endif;elsifcount(3downto0)="1001"thencount(3downto0)<="0000";count(5downto4)<=count(5downto4)+1;elsecount(3downto0)<=count(3downto0)+1;endif;endif;endprocess;endbehave;d、2选1

8、选择器程序libraryieee;useieee.std_logic_1164.all;8entitymux21isport(a,b:instd_lo

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。