收藏 分销(赏)

EDA专业课程设计抢答器.doc

上传人:精*** 文档编号:2424052 上传时间:2024-05-30 格式:DOC 页数:16 大小:134.04KB
下载 相关 举报
EDA专业课程设计抢答器.doc_第1页
第1页 / 共16页
EDA专业课程设计抢答器.doc_第2页
第2页 / 共16页
EDA专业课程设计抢答器.doc_第3页
第3页 / 共16页
EDA专业课程设计抢答器.doc_第4页
第4页 / 共16页
EDA专业课程设计抢答器.doc_第5页
第5页 / 共16页
点击查看更多>>
资源描述

1、内容摘要抢答器是为智力竞赛参赛者答题时进行抢答而设计一个优先判决器电路,竞赛者能够分为若干组,抢答时各组对主持人提出问题要在最短时间内做出判定,并按下抢答按键回复问题。当第一个人按下按键后,则在显示器上显示该组号码,对应灯亮,同时电路将其它各组按键封锁,使其不起作用。若抢答时间内无人抢答,则报警灯亮。回复完问题后,由主持人将全部按键恢复,重新开始下一轮抢答。所以要完成抢答器逻辑功效,该电路应包含抢答器判别模块、抢答器计数模块、报警模块、译码模块、分频模块。关键词:抢答判别 封锁 计数 报警Abstract Responder is the answer for the quiz partici

2、pants 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 press the answer in answer key. After pressing the button when the first person, then

3、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 keys from the host to restore and re-start the next round of the Responder. So to c

4、omplete the answering device logic functions, the circuit should include Responder identification module, Responder counting module, alarm module, decoding module, frequency module. KEY: Responder Identification Blockade Count Alarm一、 设计要求1.抢答器同时供4名选手或4个代表队比赛,分别用4个按钮S0 S3表示。2.设置一个系统清除和抢答控制开关rst,该开关由

5、主持人控制。3抢答器含有锁存和显示功效。即选手按动按钮,锁存对应编号,并在LED和数码管上显示,同时提醒灯亮。选手抢答实施优先锁存,优先抢答选手编号一直保持到主持人将系统清除为止。4. 抢答器含有定时抢答功效,且一次抢答时间由主持人设定(如20秒)5. 假如定时时间已到,无人抢答,此次抢答无效,系统报警并严禁抢答,定时显示器上显示20。二、方案设计和论证1、 概述将该任务分成五个模块进行设计,分别为:抢答器判别模块、抢答器计时模块、报警模块、分频模块、译码模块。2、 抢答器判别模块:在这个模块中关键实现抢答过程中抢答功效,并能对超前抢答进行警告,还能统计不管是正常抢答还是朝前抢答者台号,而且能

6、实现当有一路抢答按键按下时,该路抢答信号将其它抢答信号封锁功效。其中有四个抢答信号s0、s1、s2、s3;抢答状态显示信号states;抢答和警报时钟信号clk2;系统复位信号rst;警报信号warm。3、 抢答器计数模块:在这个模块中关键实现抢答过程中计时功效,在有抢答开始后进行20秒倒计时,而且在20秒倒计时后无人抢答显示超时并报警。其中有抢答时钟信号clk1;系统复位信号rst;抢答使能信号start;无人抢答警报信号warn;计时中止信号stop;计时十位和个位信号tb,ta。4、 报警模块:在这个模块中关键实现抢答过程中报警功效,当主持人按下控制键,有限时间内 人抢答或是计数到时蜂鸣

7、器开始报警,计数停止信号stop;状态输出信号alm;计数脉冲clk。5、 译码模块:在这个模块中关键实现抢答过程中将BCD码转换成7段功效。6、 分频模块:在这个模块中关键实现抢答过程中所需时钟信号。7、 顶层文件:在这个模块中是对前五个模块综合编写顶层文件。三、单元电路设计(一)抢答判别模块1.VHDL源程序library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity xuanshou is port(rst,clk2:in std_logic; s0,s1,s2,s3:in std_logi

8、c; states:buffer std_logic_vector(3 downto 0); light:buffer std_logic_vector(3 downto 0);warm:out std_logic);end xuanshou ;architecture one of xuanshou issignal st:std_logic_vector(3 downto 0);beginp1:process(s0,rst,s1,s2,s3,clk2) begin if rst=0 then warm=0;st=0000; elsif clk2event and clk2=1 then i

9、f (s0=1 or st(0)=1)and not( st(1)=1 or st(2)=1 or st(3)=1 ) then st(0)=1; end if ; if (s1=1 or st(1)=1)and not( st(0)=1 or st(2)=1 or st(3)=1 ) then st(1)=1; end if ; if (s2=1 or st(2)=1)and not( st(0)=1 or st(1)=1 or st(3)=1 ) then st(2)=1; end if ; if (s3=1 or st(3)=1)and not( st(0)=1 or st(1)=1 o

10、r st(2)=1 ) then st(3)=1; end if ;warm=st(0) or st(1) or st(2) or st(3);end if ;end process p1;p2:process(states(0),states(1),states(2),states(3),light) begin if (st=0000) then states=0000; elsif (st=0001) then states=0001;elsif (st=0010) then states=0010; elsif (st=0100) then states=0011;elsif (st=

11、1000) then states=0100; end if; light=st;end process p2;end one;2. 抢答判别仿真图3抢答判别元件图(二)计数模块1. VHDL源程序library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity JS is port(clk1,rst,start,stop:in std_logic; ta,tb:buffer std_logic_vector(3 downto 0);end JS;architecture one of JS issi

12、gnal co:std_logic;beginp1:process(clk1,rst,start,stop,ta) begin if rst=0 or stop=1 then ta=0000; elsif clk1event and clk1=1 then co=0; if start=1 then if ta=0000 then ta=1001;co=1; else ta=ta-1; end if; end if; end if;end process p1;p2:process(co,rst,start,stop,tb) begin if rst=0 or stop=1 then tb=0

13、010; elsif coevent and co=1 then if start=1 then if tb=0000 then tb=0011; else tb=tb-1; end if; end if; end if;end process p2;end one ;2.计数仿真图3.计数元件图 (三)报警模块1. VHDL源程序library ieee;use ieee.std_logic_1164.all;entity shengyin isport(rst:in std_logic; warn:in std_logic; clk:in std_logic; ta,tb:in integ

14、er range 0 to 9; stop:in std_logic; alm:out std_logic ); end; architecture bhv of shengyin is begin process(warn,ta,tb,stop,clk) begin if rst=0then alm=0; elsif stop=1then alm=0; elsif ta=0 and tb=0 then alm=clk; elsif warn=1then alm=clk; else almdoutdoutdoutdoutdoutdoutdoutdoutdoutdoutdout=1111111;

15、 END CASE; END PROCESS; END rtl;2.译码元件图(五)分频模块(用500HZ时钟和1HZ计数时钟)1Div100library ieee; use ieee.std_logic_1164.all; entity div100 is port( clk:in std_logic; clk100:out std_logic ); end div100; architecture art of div100 is signal num: integer range 0 to 99; signal temp:std_logic; begin process(clk) be

16、gin if clkevent and clk=1thenif num=99 then num=0;temp=not temp;else num=num+1; end if; clk100=temp; end if; end process; end art; 仿真图:Div100元件图:2.DIV50M:这是一个50M分频,将50MHZ信号分为1HZ。LIBRARY IEEE;USE IEEE.STD_LOGIC_1164.ALL;USE IEEE.STD_LOGIC_ARITH.ALL;USE IEEE.STD_LOGIC_UNSIGNED.ALL;ENTITY fenpin ISPORT

17、(clk : IN STD_LOGIC;clk50 : OUT STD_LOGIC);END fenpin;ARCHITECTURE rtl OF fenpin ISSIGNAL count : STD_LOGIC_VECTOR(25 DOWNTO 0);BEGINPROCESS(clk)BEGINIF (clkevent AND clk=1) THENIF(count=00) THENCount =00;ELSECount = count +1;END IF ;END IF ;END PROCESS;PROCESS(clk)BEGINIF (clkevent AND clk=1) THENI

18、F(count=00) THENclk50 = 1;ELSEclk50 = 0;END IF ;END IF ;END PROCESS;END; fenpin元件图(六)顶层文件1.仿真图:2. QDQ_1主电路图连线四 锁定引脚及下载1.选择锁定引脚,再重新编译一次。在编程窗Mode中选择Active Serial programming编程模式,打开编程文件,选中QDQ.pof,并选中打钩前3个编程项目,在ED2板上选择PROG模式,然后下载。2.锁定引脚:时钟信号 clk N2发光二极管 LEDRO-LEDR3(AE23.AF23.AB21.AC22)数码管 num0-num6 (AB12.AC12.AD11.AE11.V14.V13) ta0-ta6 (AB23.V22.AC25.AC26.AB26.AB25.Y24) tb0-tb6 (Y23.AA25.AA26.Y26.Y25.U22.W24)开关rst AF14SW0-SW3(N25.N26.P25.AE14)SOUND AA14START AD13STOP AC13

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
搜索标签

当前位置:首页 > 考试专区 > 中考

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2025 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服