module wired_and(I0, I1, Y); parameter N = 2; input [N-1:0] I0, I1; output [N-1:0] Y; wand [N-1:0] Y; assign Y = I0; assign Y = I1; endmodule