rednor.sv 66 Bytes
Newer Older
1 2 3
module top (input [6:0] a, output y);
  assign y = ~|a;
endmodule