我是靠谱客的博主 俊秀短靴,最近开发中收集的这篇文章主要介绍Verilog刷题HDLBits——Mt2015 q4题目描述代码结果,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Verilog刷题HDLBits——Mt2015 q4

  • 题目描述
  • 代码
  • 结果

题目描述

Taken from 2015 midterm question 4

See mt2015_q4a and mt2015_q4b for the submodules used here. The top-level design consists of two instantiations each of subcircuits A and B, as shown below.
在这里插入图片描述

代码

// 解法一:不分层
module top_module (input x, input y, output z);
    
    wire z1,z2,z3,z4;
    assign z1 = (x^y)&x;
    assign z2 = x^~y;
    assign z3 = (x^y)&x;
    assign z4 = x^~y;
    
    assign z = (z1|z2)^(z3&z4);

endmodule

// 解法二:分层
module top_module(
	input x,
	input y,
	output z);

	wire z1, z2, z3, z4;
	
	A ia1 (x, y, z1);
	B ib1 (x, y, z2);
	A ia2 (x, y, z3);
	B ib2 (x, y, z4);
	
	assign z = (z1 | z2) ^ (z3 & z4);

	// Or you could simplify the circuit including the sub-modules:
	// assign z = x|~y;
	
endmodule

module A (
	input x,
	input y,
	output z);

	assign z = (x^y) & x;
	
endmodule

module B (
	input x,
	input y,
	output z);

	assign z = ~(x^y);

endmodule

结果

在这里插入图片描述

最后

以上就是俊秀短靴为你收集整理的Verilog刷题HDLBits——Mt2015 q4题目描述代码结果的全部内容,希望文章能够帮你解决Verilog刷题HDLBits——Mt2015 q4题目描述代码结果所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(63)

评论列表共有 0 条评论

立即
投稿
返回
顶部