1、一、系统组成框图5二、各模块原理及其程序51、六进制计数器62、十进制计数器 63、蜂鸣器 74、译码器85、控制器9三、系统仿真 101、六进制计数器 102、十进制计数器 103、蜂鸣器 104、译码器 105、控制器 10四、心得体会 11设计过程一系统组成框图二各模块及的原理及其程序(1)六进制计数器 library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity count6 is port (clk,clr,start:in std_logic;daout:out std_logic_v
2、ector(3 downto 0);cout:out std_logic );end count6;architecture behave of count6 is signal temp:std_logic_vector(3 downto 0);beginprocess(clk,clr)if clr=1 then temp=0000;cout0101else temp=temp+1; cout end if; end process;daout=temp; end behave;(2)十进制计数器library ieee;use ieee.std_logic_arith.all;entity
3、 count10 isport(clr,start,clk: cout:out std_logic; daout:buffer std_logic_vector(3 downto 0);end count10;architecture behave of count10 isprocess(clr,start,clk) then daoutelsif ( clk) thenif start=if daout=1001else daout=daout+1;end if;end process;end behave;(3)蜂鸣器entity alarm isport(clk,I: q:out st
4、d_logic);end alarm;architecture ar of alarm issignal n:integer range 0 to 20;signal q0:std_logic;process(clk)begin if clkif i= then q0n=0;elsif n=19 and i=q0=not q0;=n+1;else q0qled0000000 end case; end process;end a;(5)控制器entity seltime isport(clr,clk: in bit; dain0,dain1,dain2,dain3,dain4,dain5: i
5、n std_logic_vector(3 downto 0); sel: out std_logic_vector(2 downto 0); out std_logic_vector(3 downto 0);end seltime;architecture a of seltime isinteger range 0 to 5;if (clr=) then sel000 tempelsif (clk=and clkevent) then if temp=5 then temp=dain0; when 1=001=dain1;when 2=010=dain2;when 3=011=dain3;w
6、hen 4=100=dain4;when 5=101=dain5;end case;三系统仿真(1)六进制(2)十进制四心得体会开始做设计时总是会犯一些错误,只有经过不停的改错不停的编译才能得到正确的程序。在编程时,我充分使用了结构化的思想,这样程序检查起来也比较方便,调试时也给了我很大方便,只要一个模块一个模块的进行调就可以了,充分体现了结构化编程的优势。在设计中要求我要有耐心和毅力,还要细心,稍有不慎,一个小小的错误就会导致结果的不正确,而对错误的检查要求我要有足够的耐心,通过这次设计和设计中遇到的问题,也积累了一定的经验,对以后从事集成电路设计工作会有一定的帮助。在应用VHDL的过程中让我真正领会到了其并行运行与其他软件顺序执行的差别及其在电路设计上的优越性。用VHDL硬件描述语言的形式来进行数字系统的设计方便灵活,利用EDA软件进行编译优化仿真极大地减少了电路设计时间和可能发生的错误,降低了开发成本,这种设计方法在数字系统设计中发挥越来越重要的作用。新疆大学课程论文(设计)、学年论文评分表题 目数字秒表设计作 者古再丽努尔艾则孜专业年级通信12-2班指导教师努尔比亚老师指导教师评语及评分建议指导教师: 年 月 日院(部)或教研室意见 学院或教研室主任:
copyright@ 2008-2022 冰豆网网站版权所有
经营许可证编号:鄂ICP备2022015515号-1