




已阅读5页,还剩5页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
EDA实验报告数码管显示时钟 班级: 电技141 姓名: 吴世辉 学号: 2014301030128 一实验目的 1.学习OCMJ显示的译码方法 2.掌握如何利用系统时钟进行分频 3.学习掌握本次试验的程序 4.学习掌握对时钟的运用 5.掌握OCMJ的工作原理,各引脚的作用及编程语句 6.掌握EDA试验箱的使用方法二实验原理框图三VHDL清单分或秒:library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity make_time isport(clk:in std_logic;data_out:out std_logic_vector(7 downto 0);clk_out:out std_logic);end;architecture WYB of make_time isbeginprocess(clk)variable temp:std_logic_vector(7 downto 0);beginif rising_edge(clk)thenif temp=x59thentemp:=X00;elseif temp(3 downto 0)=1001thentemp(7 downto 4):=temp(7 downto 4)+1;temp(3 downto 0):=0000;elsetemp(3 downto 0):=temp(3 downto 0)+1;end if;end if;end if;if temp=x59 thenclk_out=1;elseclk_out=0;end if;data_out=temp;end process;end WYB;时:library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity make_time_24 isport(clk:in std_logic;data_out:out std_logic_vector(7 downto 0)-clk_out:out std_logic);end;architecture WYB of make_time_24 isbeginprocess(clk)variable temp:std_logic_vector(7 downto 0);beginif rising_edge(clk)thenif temp=x23thentemp:=X00;elseif temp(3 downto 0)=1001thentemp(7 downto 4):=temp(7 downto 4)+1;temp(3 downto 0):=0000;elsetemp(3 downto 0):=temp(3 downto 0)+1;end if;end if;end if;-if temp=x23 then-clk_out=1;-else-clk_out=0;-end if;data_out=temp;end process;end WYB;分频:library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;use ieee.std_logic_arith.all;entity make_clk isport(reset_n:in std_logic;sys_clk:in std_logic;-系统时钟 clk_1Hz: out std_logic);end make_clk;architecture WYB of make_clk isbeginprocess(sys_clk,reset_n)variable temp: integer range 0 to 50000000;-1Hzvariable clk: std_logic;beginif reset_n=0 then temp:=0;elsif rising_edge(sys_clk)thenif temp=50000000-1 thentemp:=0;elsetemp:=temp+1;end if;-end if;if temp=50000000/2-1 thenclk:=0; elseclk:=1; end if;-clk_1Hz=clk;end if;end process;end WYB;译码:library ieee;use ieee.std_logic_1164.all; entity data_decoder is port (sec:in std_logic_vector(7 downto 0);min:in std_logic_vector(7 downto 0);hour:in std_logic_vector(7 downto 0);sec_outL:out std_logic_vector(7 downto 0);min_outL:out std_logic_vector(7 downto 0);hour_outL:out std_logic_vector(7 downto 0);sec_outH:out std_logic_vector(7 downto 0);min_outH:out std_logic_vector(7 downto 0);hour_outH:out std_logic_vector(7 downto 0) ); end; architecture WYB of data_decoder is beginsec_outL=x30 when sec(3 downto 0)=0000else-0X31 when sec(3 downto 0)=0001else-1x32 when sec(3 downto 0)=0010else-2x33 when sec(3 downto 0)=0011else-3x34 when sec(3 downto 0)=0100else-4x35 when sec(3 downto 0)=0101else-5x36 when sec(3 downto 0)=0110else-6x37 when sec(3 downto 0)=0111else-7x38 when sec(3 downto 0)=1000else-8x39;sec_outH=x30 when sec(7 downto 4)=0000else-0 x31when sec(7 downto 4)=0001else-1 x32when sec(7 downto 4)=0010else-2 x33when sec(7 downto 4)=0011else-3 x34 when sec(7 downto 4)=0100else4 x”35”;min_outL=x30 when min(3 downto 0)=0000else-0X31 when min(3 downto 0)=0001else-1x32 when min(3 downto 0)=0010else-2x33 when min(3 downto 0)=0011else-3x34 when min(3 downto 0)=0100else-4x35 when min(3 downto 0)=0101else-5x36 when min(3 downto 0)=0110else-6x37 when min(3 downto 0)=0111else-7x38 when min(3 downto 0)=1000else-8x39;min_outH=x30 when min(7 downto 4)=0000else-0 x31when min(7 downto 4)=0001else-1 x32when min(7 downto 4)=0010else-2 x33when min(7 downto 4)=0011else-3 x34 when min(7 downto 4)=0100else4 x”35”;hour_outL=x30 when hour(3 downto 0)=0000else-0X31 when hour(3 downto 0)=0001else-1x32 when hour(3 downto 0)=0010else-2x33 when hour(3 downto 0)=0011else-3x34 when hour(3 downto 0)=0100else-4x35 when hour(3 downto 0)=0101else-5x36 when hour(3 downto 0)=0110else-6x37 when hour(3 downto 0)=0111else-7x38 when hour(3 downto 0)=1000else-8x39;hour_outH=x30 when hour(7 downto 4)=0000else-0 x31when hour(7 downto 4)=0001else-1 x32; end WYB;OCMJ显示程序:library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_arith.all;use ieee.std_logic_unsigned.all;entity lcd_OCMJ_128_32 isport( reset_n:in std_logic;BUSY:in std_logic;sec_inL:in std_logic_vector(7 downto 0);min_inL:in std_logic_vector(7 downto 0);hour_inL:in std_logic_vector(7 downto 0);sec_inH: in std_logic_vector(7 downto 0);min_inH: in std_logic_vector(7 downto 0);hour_inH: in std_logic_vector(7 downto 0);REQ:out std_logic; DB:out std_logic_vector(7 downto 0) );end entity;architecture WYB of lcd_OCMJ_128_32 istype word is array(0 to 52) of std_logic_vector(7 downto 0);-定义数组用于显示北京时间和时、分、秒constant sin_data:word:=(-北-京XF4,XF0,X01,X00,X11,X11,XF0,X02,X00,X1E,-时 -间X09,XF0,X03,X00,X2A,X11,XF0,X04,X00,X1C,X44,XF9,X03,X10,Xff,Xf9,X04,X10,Xff,Xf9,-时X05,X10,X3a,Xf9,X06,X10,X
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025年度健身房租赁合同包含营养咨询及健身课程
- 2025年度瓷砖施工与建筑节能评估合同范本
- 2025年度欧派橱柜品牌授权与运营合同范本
- 2025版区块链技术应用开发合同范本下载
- 2025年度房产买卖定金合同(含房产交易纠纷解决机制)
- 河北省博野县2025年上半年公开招聘城市协管员试题含答案分析
- 2025翻译公司项目合作保密协议范本
- 2025年度展览馆场地租赁服务协议
- 2025版室内软装设计与施工一体化合作协议
- 2025东莞绿色住宅租赁及节能服务合同
- 惠州卫生职业技术学院工作人员招聘考试真题2022
- 三级创业指导师考试复习题库(500题)
- 2022年北京语言大学各单位新编长聘人员招聘需求笔试备考题库及答案解析
- 部编版小学语文四年级上册课程纲要
- 幼儿园红色故事绘本:《闪闪的红星》 课件
- GB/T 31997-2015风力发电场项目建设工程验收规程
- HG20615-RF法兰标准尺寸
- 三尖瓣下移畸形(Ebstein畸形)
- 计算机组装与维护完整版课件(全)
- 一键自动生成spccpkMSAPPK数据工具
- (知识扩展)城市轨道交通CBTC系统功能课件
评论
0/150
提交评论