为了在同一拍读取三个输入的数值,使用两次子模块比较,比较结果再用一次子模块比较;子模块的输出端口为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(...