// // Generated by Bluespec Compiler // // // Ports: // Name I/O size props // CLK I 1 unused // RST_N I 1 unused // a IO 32 inout // b IO 32 inout // // No combinational paths from inputs to outputs // // `ifdef BSV_ASSIGNMENT_DELAY `else `define BSV_ASSIGNMENT_DELAY `endif `ifdef BSV_POSITIVE_RESET `define BSV_RESET_VALUE 1'b1 `define BSV_RESET_EDGE posedge `else `define BSV_RESET_VALUE 1'b0 `define BSV_RESET_EDGE negedge `endif module mkRedoInoutConnect(CLK, RST_N, .a(a), .b(a)); input CLK; input RST_N; inout [31 : 0] a; endmodule // mkRedoInoutConnect