- 1、本文档共5页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
项目四秒表设计实验报告精选
“项目四 秒表设计”实验报告
专业班级: 电子144 姓名: 秦慧桦
学号: 2014014273 实验日期: 2016.10.13
一、实验目的
熟悉并掌握计数器的设计;
熟悉数码管的设计;
熟悉VHDL语言的分层次设计;
二实验内容:
1)对50MHz晶振进行500000分频,得到100Hz信号;
2)对该100Hz信号进行0-9的循环计数,并用一位数码管显示;
3)在2成功的基础上进行扩展,实现100Hz信号的0-99循环计数,并用两位数码管进行显示;
4)扩展内容:计数初值可以设置,计数值可以人为干预;
三、实验结果
1. 对50MHz晶振进行500000分频,得到100Hz信号的程序代码
library ieee;
use ieee.std_logic_1164.All;
use ieee.std_logic_unsigned.All;
use ieee.std_logic_arith.All;
entity div25 is
port(clkin:in std_logic;
clkout:buffer std_logic);
end;
architecture ret1 of div25 is
begin
process(clkin)
variable count:integer range 0 to 249999;
begin
if clkin event and clkin=1 then
if count249999 then
count:=count+1;
else
count:=0;clkout=not clkout;
end if;
end if;
end process;
end;
2.对100Hz信号的0-99循环计数程序代码及仿真结果
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.std_logic_arith.all;
entity cnt99 is
port (clkout:in std_logic;
gw:out std_logic_vector(3 downto 0);
sw:out std_logic_vector(3 downto 0));
end;
architecture rtl of cnt99 is
begin
process(clkout)
variable num:std_logic_vector (3 downto 0) ;
variable s:std_logic_vector (3 downto 0) ;
begin
if clkout event and clkout=1 then
if (num9) then
num:=num+1;
else num:=0000;s:=s+1;
if (s9) then s:=0000;
end if;
end if ;
end if;
gw=num;
sw=s;
end process;
end ;
3 顶层文件的截屏、引脚锁定及实验现象截图,并对实验现象进行分析
实验现象分析:单片机数码管显示从0~99秒的计时。
如何实现秒表的倒计时功能?请给出程序及实验结果。
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.std_logic_arith.all;
entity cntd99 is
port (clkout:in std_logic;
gw:out std_logic_vector(3 downto 0);
sw:out std_logic_vector(3 downto 0));
end;
architecture rtl of cntd99 is
begin
process(clkout)
variable num:std_logic_vector (3 downto 0) ;
variable s:std_logic_vector (3 downto 0) ;
begin
if clkout event and clkout=1 then
if (num9) th
您可能关注的文档
最近下载
- GB_T 42588-2023系统与软件工程 功能规模测量NESMA方法.docx VIP
- 祝由十三科 收藏珍本.pdf
- 高级英语第三课Ships-in-the-Desert名师优质课获奖市赛课一等奖课件.ppt VIP
- (新教材)人教版高中物理必修1第三章第5节《共点力的平衡》优质说课稿.doc
- 新冀教版数学一年级上册全册课件(2024年秋新教材).pptx
- 《化妆品配方与制备技术》课件——第10章 唇部美容化妆品.pptx VIP
- JBT 10491-2022 额定电压 450750V 及以下交联聚烯烃绝缘电线和电缆.docx
- 《化妆品配方与制备技术》课件——第1章 护肤化妆品.pptx VIP
- 山东服装职业学院综合类招聘考试真题.pdf
- 合伙经营分公司协议书(7篇).docx
文档评论(0)