`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] x,y; sub_mod sub_mod_u0( .clk(clk), .rst_n(rst_n), .a(a), .b(b), .d(x) ); sub_mod sub_mod_u1( .clk(clk), .rst_n(rst_n), .a(a), .b(c), .d(y) ...