EDA课程设计四路抢答器_第1页
EDA课程设计四路抢答器_第2页
EDA课程设计四路抢答器_第3页
EDA课程设计四路抢答器_第4页
EDA课程设计四路抢答器_第5页
已阅读5页,还剩5页未读 继续免费阅读

下载本文档

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

文档简介

1、eda课程设计报告报 告 题 目: 四路抢答器 作者所在系部: 电子系 作者所在专业: 微电子技术 作者所在班级: xxxxxxxxxxxxx 作 者 姓 名 : xxxxxxxxxxxxxx 指导教师姓名: xxxx 完 成 时 间 : xxx-xx-xx 内容摘要抢答器是为智力竞赛参赛者答题时进行抢答而设计的一种优先判决器电路,竞赛者可以分为若干组,抢答时各组对主持人提出的问题要在最短的时间内做出判断,并按下抢答按键回答问题。当第一个人按下按键后,则在显示器上显示该组的号码,对应的灯亮,同时电路将其他各组按键封锁,使其不起作用。因此要完成抢答器的逻辑功能,该电路应包括抢答器鉴别模块、抢答器

2、计数模块、译码模块、计数模块。关键词:抢答鉴别 译码 计数 abstract responder is the answer for the quiz participants to answer in the design when a priority decision circuit, and the race can be divided into several groups, answer in each group on the host issues raised in the shortest possible time to make judgments , and pre

3、ss the answer in answer key. after pressing the button when the first person, then the display shows the number of the group, the corresponding lights, while other groups will be key circuit block, it does not work. if the answer in time, no answer in, the alarm lights. answering questions, all the

4、keys from the host to restore and re-start the next round of the responder. so to complete the answering device logic functions, the circuit should include responder identification module, responder counting module, alarm module, decoding module, frequency module. key: responder identification count

5、 一、 设计要求1.抢答器同时供4名选手或4个代表队比赛,分别用4个按钮p0p3表示。2.设置一个系统使能开关kaishi,该开关由主持人控制。3抢答器具有锁存与显示功能。即选手按动按钮,锁存相应的编号,并在led和数码管上显示,同时提示灯亮。选手抢答实行优先锁存,优先抢答选手的编号一直保持到主持人将系统清除为止。二、方案设计与论证1、 概述将该任务分成三个模块进行设计,分别为:抢答器鉴别模块、计数模块、译码模块。2、 抢答器鉴别模块:在这个模块中主要实现抢答过程中的抢答功能,并能对超前抢答进行警告,还能记录无论是正常抢答还是朝前抢答者的台号,并且能实现当有一路抢答按键按下时,该路抢答信号将其

6、余的抢答信号封锁的功能。其中有四个抢答信号s0、s1、s2、s3;抢答状态显示信号states;抢答与警报时钟信号clk2;系统复位信号rst;警报信号warm。3、 抢答器计数模块:在这个模块中主要实现抢答过程中的计时功能,在有抢答开始后进行20秒的倒计时,并且在20秒倒计时后无人抢答显示超时并报警。其中有抢答时钟信号clk1;系统复位信号rst;抢答使能信号start;无人抢答警报信号warn;计时中止信号stop;计时十位和个位信号tb,ta。4、 译码模块:在这个模块中主要实现抢答过程中将bcd码转换成7段的功能。5、 顶层文件:在这个模块中是对前五个模块的综合编写的顶层文件。三、单元

7、电路设计(一)抢答鉴别模块1.vhdl源程序library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity qiangda isport(p:in std_logic_vector(3 downto 0); en:in std_logic; clk:in std_logic; y:out std_logic_vector(3 downto 0);end qiangda;architecture a of qiangda issignal b:std_logic_vector;begin proces

8、s(p,en,clk)beginif(clk'event and (clk='1') )then if(en='1' )thencase p iswhen "0001"=>y<="0001"when "0010"=>y<="0010"when "0100"=>y<="0100"when "1000"=>y<="1000"when others=>

9、;y<="0000"end case; elsey<="0000" end if;end if;end process;end a;2. 抢答鉴别仿真图3抢答鉴别元件图(二)计数模块1. vhdl源程序library ieee;use ieee.std_logic_1164.all;entity ten is port(clk:in std_logic; set:in std_logic; data:in integer range 0 to 9; count:out integer range 0 to 9; carry:out std_l

10、ogic);end ten;architecture dd of ten issignal tmp:integer range 0 to 9;begin process(clk,set,data) begin if(set='1') then tmp<=data; elsif(clk'event and clk='1') then if(tmp<9) then tmp<=tmp+1; carry<='0' elsif(tmp=9) then tmp<=0; carry<='1' end

11、if; end if; end process; count<=tmp; end dd;2.计数仿真图3.计数元件图(四)七段译码器模块1. vhdl源程序library ieee;use ieee.std_logic_1164.all;entity decoder3_8 isport(a, b, c ,d: instd_logic; -key1键和key2键和key3键作为 a b c信号的输入con:in std_logic;y : outstd_logic_vector(7 downto 0); -led灯作为输出显示状态end decoder3_8;architecture fu

12、n of decoder3_8 issignal indata: std_logic_vector(3 downto 0);beginindata <= d&c&b&a;encoder:process (indata)beginif(con='1')thencase indata iswhen "0000"=>y<="11111110"when "0001"=>y<="11111101"when "0010"=>y<

13、;="11111011"when "0011"=>y<="11110111"when "0100"=>y<="11101111"when "0101"=>y<="11011111"when "0110"=>y<="10111111"when "0111"=>y<="01111111"when "1000&qu

14、ot;=>y<="01111111"when "1001"=>y<="01111111"when others =>y<="xxxxxxxx"end case;end if;end process encoder;end fun;2.译码元件仿真3.译码元件图(六)顶层文件1.仿真图:2. qdq_1主电路图连线四 锁定引脚及下载1.选择锁定引脚,再重新编译一次。在编程窗的mode中选择active serial programming编程模式,打开编程文件,选中qdq.pof,并选中打钩前3个编程项目,在ed2板上选择prog模式,然后下载。2.锁定引脚:时钟信号 clk n2发光二极管 l

温馨提示

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

评论

0/150

提交评论