/看了答案区和评论区,想说一下,一般我们在verilog的主程序中是不写代码的,只进行各个模块的实例化工作。/ `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]m,n; comparew u1( .clk(clk), .rst_n(rst_n), .data1(a), .data2(b), .data3(m) ); comparew u2( .clk(clk), .rst_n(rst_...