分享
分销 收藏 举报 申诉 / 5
播放页_导航下方通栏广告

类型VHDL电子时钟程序.doc

  • 上传人:xrp****65
  • 文档编号:7727825
  • 上传时间:2025-01-14
  • 格式:DOC
  • 页数:5
  • 大小:42.50KB
  • 下载积分:10 金币
  • 播放页_非在线预览资源立即下载上方广告
    配套讲稿:

    如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。

    特殊限制:

    部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。

    关 键  词:
    VHDL 电子 时钟 程序
    资源描述:
    VHDL电子时钟程序 最近收到网上朋友们来信咨询如何设计电子时钟,也有很多热心朋友把他设计的时钟或时钟程序发给我。因时间和水平有限不能一一回复和审查到底哪些是合格或是网络转载的。但是感觉可能对部分网友会有所用处,就把自己手头已有的一些时钟设计的相关资料放到网上,希望大家能多多包涵。我会不定时的把一些时钟设计资料上传到本博客,希望多多关注。 下面是电子时钟设计的部分VHDL程序代码。 VHDL电子钟程序(小时和分钟) library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; ---- Uncomment the following library declaration if instantiating ---- any Xilinx primitives in this code. --library UNISIM; --use UNISIM.VComponents.all; entity hours is Port ( rst4,selector3,ky_3j : in STD_LOGIC;                   C10 : in std_logic;                         dat40 : out std_logic_vector(7 downto 0)); end hours; architecture Behavioral of hours is signal dat41,dat42 : std_logic_vector(7 downto 0):=(others =>'0'); begin process(rst4,C10,ky_3j) begin case selector3 is when '1' => dat42<=dat41; if ky_3j'event and ky_3j='1' then if dat41(7 downto 4)="0010" and dat41(3 downto 0)="0011" then dat41<="00000000"; elsif dat41(3 downto 0)<"1001" then dat41(3 downto 0)<=dat41(3 downto 0)+1; else dat41(3 downto 0)<="0000";dat41(7 downto 4)<=dat41(7 downto 4)+1; end if ; end if ; dat40<=dat41; when '0' => dat41<=dat42; if(rst4 = '0') then dat42<=(others =>'0'); elsif C10'event and C10='1' then if dat42(7 downto 4)="0010" and dat42(3 downto 0)="0011" then dat42<="00000000"; elsif dat42(3 downto 0)<"1001" then dat42(3 downto 0)<=dat42(3 downto 0)+1; else dat42(3 downto 0)<="0000";dat42(7 downto 4)<=dat42(7 downto 4)+1;   end if; end if; dat40<=dat42; when others =>null; end case; end process; end Behavioral;   VHDL电子钟程序(分频和秒计数) library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; ---- Uncomment the following library declaration if instantiating ---- any Xilinx primitives in this code. --library UNISIM; --use UNISIM.VComponents.all; entity miseconds is     Port ( clk_100HZ,rst1 : in STD_LOGIC;                           A : out std_logic;                       dat10 : out std_logic_vector(7 downto 0)); end miseconds; architecture Behavioral of miseconds is signal dat1 : std_logic_vector(7 downto 0):=(others =>'0'); begin process(clk_100HZ,rst1) begin if(rst1 = '0') then dat1<=(others =>'0'); elsif clk_100HZ'event and clk_100HZ='1' then if dat1(7 downto 4)="1001" and dat1(3 downto 0)="1001" then A<='1'; dat1(7 downto 0)<="00000000"; else A<='0'; if dat1(3 downto 0)<"1001" then dat1(3 downto 0)<=dat1(3 downto 0)+1; else dat1(3 downto 0)<="0000"; if dat1(7 downto 4)<"1001" then dat1(7 downto 4)<=dat1(7 downto 4)+1; else dat1(7 downto 4)<="0000"; end if; end if; end if; end if; end process; dat10<=dat1; end Behavioral;     VHDL电子钟程序(数码管显示扫描程序) library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; ---- Uncomment the following library declaration if instantiating ---- any Xilinx primitives in this code. --library UNISIM; --use UNISIM.VComponents.all; entity scannor is Port ( clk_1MHZ,T : in std_logic;            clks : in std_logic_vector(5 downto 0);              D : in std_logic_vector(31 downto 0);              positions : out std_logic_vector(7 downto 0);                                         segments : out std_logic_vector(7 downto 0)); end scannor; architecture Behavioral of scannor is signal cnt8:STD_LOGIC_vector(2 downto 0); signal sin :STD_LOGIC_vector(7 downto 0); signal d1 :   STD_LOGIC_vector(3 downto 0); signal bt1 : std_logic_vector(7 downto 0); begin P1: process(clk_1MHZ) begin if (clk_1MHZ'event and clk_1MHZ='1') then case cnt8 is when "000" => sin <= "00000001" ; d1 <= D(3 downto 0) ;   led8s(7) <= '0'; when "001" => sin <= "00000010" ; d1 <= D(7 downto 4) ;   led8s(7) <= '0'; when "010" => sin <= "00000100" ; d1 <= D(11 downto 8) ; led8s(7) <= '1'; when "011" => sin <= "00001000" ; d1 <= D(15 downto 12) ; led8s(7) <= '0'; when "100" => sin <= "00010000" ; d1 <= D(19 downto 16) ; led8s(7) <= '1'; when "101" => sin <= "00100000" ; d1 <= D(23 downto 20) ; led8s(7) <= '0'; when "110" => sin <= "01000000" ; d1 <= D(27 downto 24) ; led8s(7) <= '1'; when "111" => sin <= "10000000" ; d1 <= D(31 downto 28) ; led8s(7) <= '0'; when others => null ; end case ; end if ; end process P1; P2 : process(clk_1MHZ) begin if clk_1MHZ'event and clk_1MHZ ='1' then cnt8 <= cnt8+1; end if ; end process P2; P3 : process(d1) begin case d1 is when "0000" => led8s(6 downto 0) <= "0111111" ; when "0001" => led8s(6 downto 0) <= "0000110" ; when "0010" => led8s(6 downto 0) <= "1011011" ; when "0011" => led8s(6 downto 0) <= "1001111" ; when "0100" => led8s(6 downto 0) <= "1100110" ; when "0101" => led8s(6 downto 0) <= "1101101" ; when "0110" => led8s(6 downto 0) <= "1111101" ; when "0111" => led8s(6 downto 0) <= "0000111" ; when "1000" => led8s(6 downto 0) <= "1111111" ; when "1001" => led8s(6 downto 0) <= "1101111" ; when others => null ; end case ; end process P3; bt1(0) <= sin(0) ; bt1(1) <= sin(1) ; bt1(2) <= sin(2) and clks(0) ; bt1(3) <= sin(3) and clks(1) ; bt1(4) <= sin(4) and clks(2) ; bt1(5) <= sin(5) and clks(3) ; bt1(6) <= sin(6) and clks(4) ; bt1(7) <= sin(7) and clks(5) ; bt(0)<=not(bt1(0)and T); bt(1)<=not(bt1(1)and T); bt(2)<=not(bt1(2)and T); bt(3)<=not(bt1(3)and T); bt(4)<=not(bt1(4)and T); bt(5)<=not(bt1(5)and T); bt(6)<=not(bt1(6)and T); bt(7)<=not(bt1(7)and T); end Behavioral;
    展开阅读全文
    提示  咨信网温馨提示:
    1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
    2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
    3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
    4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前可先查看【教您几个在下载文档中可以更好的避免被坑】。
    5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
    6、文档遇到问题,请及时联系平台进行协调解决,联系【微信客服】、【QQ客服】,若有其他问题请点击或扫码反馈【服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【版权申诉】”,意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:0574-28810668;投诉电话:18658249818。

    开通VIP折扣优惠下载文档

    自信AI创作助手
    关于本文
    本文标题:VHDL电子时钟程序.doc
    链接地址:https://www.zixin.com.cn/doc/7727825.html
    页脚通栏广告

    Copyright ©2010-2026   All Rights Reserved  宁波自信网络信息技术有限公司 版权所有   |  客服电话:0574-28810668    微信客服:咨信网客服    投诉电话:18658249818   

    违法和不良信息举报邮箱:help@zixin.com.cn    文档合作和网站合作邮箱:fuwu@zixin.com.cn    意见反馈和侵权处理邮箱:1219186828@qq.com   | 证照中心

    12321jubao.png12321网络举报中心 电话:010-12321  jubao.png中国互联网举报中心 电话:12377   gongan.png浙公网安备33021202000488号  icp.png浙ICP备2021020529号-1 浙B2-20240490   


    关注我们 :微信公众号  抖音  微博  LOFTER               

    自信网络  |  ZixinNetwork