- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
1.利用双输入端的nand门,用Verilog编写自己的双输入端的与门、或门和非门,把它们分别命名为my_or,my_and和my_not,并通过激励模块验证这些门的功能。
答:`timescale 1ns/1ns
/****************************
********** my_and ***********
****************************/
module my_and(in1,in2,out);
input in1,in2;
output out;
wire out1;
nand a1(out,out1,out1);
nand a2(out1,in1,in2);
endmodule
/****************************
********** my_or ************
****************************/
module my_or(in1,in2,out);
input in1,in2;
output out;
wire out1,out2;
nand o1(out,out1,out2);
nand o2(out1,in1,in1);
nand o3(out2,in2,in2);
endmodule
/****************************
********** my_not ***********
****************************/
module my_not(in,out);
input in;
output out;
nand n1(out,in,in);
endmodule
/****************************
********** test ***********
****************************/
module test;
reg a,b;
wire and_c,or_c,not_c;
initial
begin
a=0;b=0;
#10 a=0;b=1;
#10 a=1;b=0;
#10 a=1;b=1;
#10 $stop;
end
my_and myand1(a,b,and_c);
my_or myor1(a,b,or_c);
my_not mynot1(a,not_c);
endmodule
2.使用上题中完成的my_or,my_and和my_not门构造一个双输入端的xor门,其功能是计算z = x’y + x y’,其中x和y为输入,z为输出;编写激励模块对x和y的四种输入组合进行测试仿真。
答:在上题代码的基础上,添加如下代码:(注意,xor在仿真器中已自备,这里用my_xor)
/****************************
********* my_xor **********
********* z=xy+xy *********
****************************/
module my_xor(in1,in2,out);
input in1,in2;
output out;
wire not_in1,not_in2,out_a1,out_a2;
my_not mynot1(in1,not_in1);
my_not mynot2(in2,not_in2);
my_and myand1(in1,not_in2,out_a1);
my_and myand2(in2,not_in1,out_a2);
my_or myor1(out_a1,out_a2,out);
endmodule
module test52;
reg x,y;
wire z;
initial
begin
x=0;y=0;
#10 x=0;y=1;
#10 x=1;y=0;
#10 x=1;y=1;
#10 $stop;
end
my_xor myxor(x,y,z);
endmodule
3.本章中的一位全加器使用乘积项之和的形式可以表示为①:
sum = a ( b ( c_in + a’ ( b ( c_in’ + a’ ( b’ ( c_in + a ( b’ ( c_in’
c_out = a ( b + b ( c_in + a ( c_in
其中a,b和c_in为输入,sum和c_out为输出;只使用与门、或门、非门实现一个一位全加器,写出其Verilog描述,限制是每个门最多只能有四个输入端。编写激励模块对其功能进行检查,并对全部的输入组合进行测试。
答:在前面的课程中已经学习
您可能关注的文档
- Unit 3 Feelings and Emotions.doc
- Unit 2预习资料.doc
- Unit 2 Period 1 Warming Up,Prereading and Reading.doc
- Unit 3 WHY DO WE BELIEVE THAT THE EARTH IS ROUND课文翻译大学英语四.doc
- Unit 4 Welcome to our party!第一课时.doc
- Unit 4 Astronomy:The science of the stars.doc
- Unit 4 script & key.doc
- Unit 5 What’s your hobby?第四课时.doc
- Unit 4 What would you do.doc
- Unit 5 Eating out.doc
最近下载
- 土地资源调查课件.pptx VIP
- 2025教学主任及教秘专项培训班考核试卷含答案.docx
- QC∕T 948-2013 汽车顶部装载装置.pdf VIP
- 八上名著《红岩》:故事梗概+知识点+考点大集合.doc VIP
- 《劳动经济学讲义》课件.ppt VIP
- ISO各体系认证审核前准备资料清单.doc VIP
- 巧虎目录清单.doc VIP
- 销售管理专业《销售案例研究 ( 实践 ) 》课程调研报告样本.pdf VIP
- 2025年新精通版(三年级起)英语三年级上册课件 Unit 2 Lesson 3 .pptx VIP
- 场效应MOS管AK4435参数-9.1A-30V封装SOP-8.pdf VIP
文档评论(0)