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

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

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]c0;
compare u0(
	.clk(clk),
	.rst_n(rst_n),
	.a(a),
	.b(b),
	.c(c0)
);

reg [7:0]c1;
always@(posedge clk or negedge rst_n)begin
	if(!rst_n)begin
		c1<=0;
	end
	else begin
		c1<=c;
	end
end

compare u1(
	.clk(clk),
	.rst_n(rst_n),
	.a(c0),
	.b(c1),
	.c(d)
);

endmodule


module compare(
	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
		if(a>b)begin
			c<=b;
		end
		else begin
			c<=a;
		end
	end

end

endmodule

全部评论

相关推荐

07-31 14:17
门头沟学院 Java
牛客39712426...:那他今年招集贸呢,26届本科大部分不就是属猴,除非写明招25的或者研究生
点赞 评论 收藏
分享
zYvv:双一流加大加粗再标红,然后广投。主要是获奖荣誉不够,建议开始不用追求大厂,去别的厂子刷下实习。
点赞 评论 收藏
分享
水墨不写bug:疑似没有上过大学
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

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