blob: bc52513ddc80730d6c5372fa38a37ba36b8ee616 [file] [log] [blame]
module top (
input [6:0] in,
output out
);
assign out = ^in;
endmodule