blob: 8b8c551885ba2871f3abf489cad106815627090e [file] [log] [blame] [edit]
module top(...);
input a, b;
output y;
assign y = a|b;
endmodule