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

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

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

为了在同一拍读取三个输入的数值,使用两次子模块比较,比较结果再用一次子模块比较;

子模块的输出端口为reg。

`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] tmp_1;
	wire [7:0] tmp_2;

cmpr_sml c1(clk,rst_n,a,b,tmp_1);
cmpr_sml c2(clk,rst_n,a,c,tmp_2);
cmpr_sml c3(clk,rst_n,tmp_1,tmp_2,d);

endmodule

/*
module cmpr_sml(
input clk,
input rst_n,
input [7:0] in_1,
input [7:0] in_2,
output reg [7:0] out
);
*/

module cmpr_sml(clk,rst_n,in_1,in_2,out);
input clk;
input rst_n;
input [7:0] in_1;
input [7:0] in_2;
output reg [7:0] out;

always @(posedge clk or negedge rst_n)
begin
	if(!rst_n)
	out <= 0;
	else if (in_1<=in_2)
	out <= in_1;
	else
	out <= in_2;
end

endmodule

全部评论

相关推荐

沉淀一会:1.同学你面试评价不错,概率很大,请耐心等待; 2.你的排名比较靠前,不要担心,耐心等待; 3.问题不大,正在审批,不要着急签其他公司,等等我们! 4.预计9月中下旬,安心过节; 5.下周会有结果,请耐心等待下; 6.可能国庆节前后,一有结果我马上通知你; 7.预计10月中旬,再坚持一下; 8.正在走流程,就这两天了; 9.同学,结果我也不知道,你如果查到了也告诉我一声; 10.同学你出线不明朗,建议签其他公司保底! 11.同学你找了哪些公司,我也在找工作。
点赞 评论 收藏
分享
10-05 23:02
东北大学 Java
我说句实话啊:那时候看三个月培训班视频,随便做个项目背点八股,都能说3 40w是侮辱价
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务