- 1、本文档共15页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
2011年《数字系统设计》试卷A部分答案
4.按要求转换下列程序。
(1) WAIT UNTIL clock’EVENT AND clock=‘1’;
q = data;
(2)If a(3)=1 then Y=”11”; Elsif a(2)=1 then Y=”10”;Elsif a(1)=1 then Y=”01”; Else Y= 00 ;End if; ;三、电路设计题 (43分)
1.解答:参考
library ieee;
use ieee.std_logic_1164.all;
entity singen_tb is
end singen_tb;
architecture TB_ARCHITECTURE of singen_tb is
component sin_gen
port( clk : in std_logic; rst : in std_logic;
q : OUT STD_LOGIC_VECTOR(7 DOWNTO 0) );
end component;
signal clk : std_logic; signal rst : std_logic;
signal qout : STD_LOGIC_VECTOR(7 DOWNTO 0);
begin
UUT : sin_gen
port map ( clk = clk, rst = rst, q = qout );
STIMULUS: process
begin
rst = 0; wait for 100 ns; --0 fs
rst = 1; wait for 1 us; wait;
end process;
CLOCK_ : process
begin
clk = 0; wait for 50 ns; --0 fs
clk = 1; wait for 50 ns; --50 ns
end process;
end TB_ARCHITECTURE;;;Answer whether each of the VHDL code has the same behaviour as the timing diagram
Notes: 1)”same behaviour” means that the signals a,b,and c have the same values at the end of each clock cycle in steady-state simulation(ignore any irregularities in the first few clock cycles)
2)for full marks, if the code does not match, you must explain why.
3) assume that all signals, constrants, variables, types, etc are properly defined and declared.
4) all of the codes are leagal, synthesizable VHDL code.;Answer whether each of the VHDL code has the same behaviour as the timing diagram
Notes: 1)”same behaviour” means that the signals a,b,and c have the same values at the end of each clock cycle in steady-state simulation(ignore any irregularities in the first few clock cycles)
2)for full marks, if the code does not match, you must explain why.
3) assume that all signals, constrants, variables, types, etc are properly defined and declared.
4) all of the codes are leagal, synthesizable VHDL code.;C
DIFFERENT: The signal a is assigned the
value of c from the previous clock cycle. This
value is NOT b which is a from two cycles
ago.
The sig
您可能关注的文档
- 高分子材料工程专业英语词汇与部分课文翻译.doc
- 高浓度补钾原则与注意事项.ppt
- 高校毕业生毕业手续与注意事项指南.ppt
- 高二生物:专题- 生态工程.ppt
- 高等教育出版社简明材料力学第二版 1.ppt
- 高等数学实验---MATLAB 简介.ppt
- 高老头悲剧原因与现代启示.doc
- 高级财务会计第9章 企业重组与清算会计.ppt
- 高考化学 规范答题满分系列(三).ppt
- 高考地理一轮复习 第三单元 第1讲 区域水土流失与其治理-以黄土高原为例练习 鲁教版必修3.doc
- 位载体清除v60xclearbit首先安装cxone4.pdf
- 正方形提高知识讲解.pdf
- a您可以上三单元试卷.pdf
- 名称练习维护防止热浸镀锌覆盖检测结构钢产品程序a143 standard practice for safeguarding against embrittlA143以保护Embrittl.pdf
- panther纳税人提交指示corter co2010CO.pdf
- 古诗二首四时田园杂兴.pptx
- 说明制造商扩展packreadme rmds retroscifi.pdf
- 课会限制国际贸易.pdf
- unit 1 can you play the guitar-section知识点讲解练习学七级英语下册同步一网打尽人教版原卷.pdf
- 02 mds修订时钟发生器ics66202reva.pdf
文档评论(0)