blob: bcfef9ec2188b66d819c51f4100727ef0ed8186a [file] [log] [blame]
module top (input [6:0] a, output y);
assign y = ~|a;
endmodule