blob: 56e9140aea0ff22b7c0355216ee28c52da09f783 [file] [log] [blame] [edit]
module top(
input wire inp,
output wire out
);
assign out = inp;
endmodule