题解 | #使用子模块实现三输入数的大小比较#

使用子模块实现三输入数的大小比较

https://www.nowcoder.com/practice/bfc9e2f37fe84c678f6fd04dbce0ad27

`timescale 1ns/1ns
module main_mod(
	input clk,
	input rst_n,
	input [7:0]a,
	input [7:0]b,
	input [7:0]c,
	
	output[7:0]d
);
	wire [7:0]e;
	wire [7:0]f;
	sub_module mod_1(
		.clk(clk),
		.rst_n(rst_n),
		.a(a),
		.b(b),
		.c(e)
	);
	sub_module mod_2(
		.clk(clk),
		.rst_n(rst_n),
		.a(b),
		.b(c),
		.c(f)
	);
	sub_module mod_3(
		.clk(clk),
		.rst_n(rst_n),
		.a(e),
		.b(f),
		.c(d)
	);	
endmodule


module sub_module(
	input clk,
	input rst_n,
	input [7:0]a,
	input [7:0]b,
	
	output reg [7:0]c
);
	always @(posedge clk or negedge rst_n)begin
		if(!rst_n)begin
			c <= 0;
		end
		else begin
			c <= (a>b)?b:a;
		end
	end

endmodule

全部评论

相关推荐

05-19 19:57
蚌埠学院 Python
2237:Gpa70不算高,建议只写排名,个人技能不在多而在精,缩到8条以内。项目留一个含金量高的,减少间距弄到一页,硕士简历也就一页,本科不要写很多
实习,投递多份简历没人回...
点赞 评论 收藏
分享
白火同学:大二有这水平很牛了,可以适当对关键信息加粗一点,比如关键技术、性能指标之类的。
点赞 评论 收藏
分享
昨天 13:48
门头沟学院 C++
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务