FPGA的数字秒表设计与仿真_第1页
FPGA的数字秒表设计与仿真_第2页
FPGA的数字秒表设计与仿真_第3页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、【Word版本下载可任意编辑】 FPGA的数字秒表设计与仿真 architecture Behavioral of topfile is signal clk:std_logic:=0; signal enableout:std_logic:=0; signal data0,data1,data2, data3,data4,data5:std_logic_vector(3 downto 0):=“0000”; component abc port(clk:in std_logic; dout:out std_logic); end component; component enable por

2、t(enablein:in std_logic; enableout:out std_logic); end component; component highlevel port(rst,clk,clear:in std_logic; output1,output2,output3, output4,output5,output6:out std_logic_vector(3 downto 0); carryout:out std_logic); end component; component yima port(datainput:in std_logic_vector(3 downto

3、 0); dataoutput: out std_logic_vector(6 downto 0); end component; begin u0:abc port map(clkin,clk); u1:enable port map(enablein,enableout); u2:highlevel port map(enableout,clk,clear,data0,data1,data2,data3,data4,data5); u3:yima port map(data0,dataout0); u4:yima port map(data1,dataout1); u5:yima port

4、 map(data2,dataout2); u6:yima port map(data3,dataout3); u7:yima port map(data4,dataout4); u8:yima port map(data5,dataout5); end Behavioral; 由于各个子模块都已经经过验证无误,并且顶层文件中不涉及复杂的时序关系,相当于只是将各个模块用导线连接起来,只要各个端口的连接对应正确即可,所以不需写专门的test bench开展验证。完成以上设计后,即可开展逻辑综合,综合无误后开展管脚适配,生成。bit文件然后到实验板上测试。经过反复多次测试,以上设计完全满足了预期的设计指标,开始/停止按键和清零按键都能准确的控制秒表的运行,七段显示数码管也能够准确的显示计时结果。通过与标准秒表比照,该设计的计时误差在0.03s以内,而这其中也包括实验板上晶振由于长期使用所带来的误差。 4 结束语 本文所介绍数字秒表设计方法,采用了当下的EDA设计手段。在Xinlinx FPGA开发环境下,采用至上而下的模块化设计方法,使得系统开发速度快、成本低、系统性能大幅度提升。通过实验验证,本文设计的数字秒表计时准确、性能稳定,可以很容易嵌入其他复杂的数字系统,充当计时模块。 利用EDA设计工具,结合基于FPGA的

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论