# Pastebin gR3ARjd8 (* blackbox *) module BOX #(parameter X = 1'b0) (output Q); endmodule module top(output Q); BOX #(.X({0{1'b0}})) box_i(.Q(Q)); endmodule