aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lut/map_or.v
blob: 8b8c551885ba2871f3abf489cad106815627090e (plain)
1
2
3
4
5
module top(...);
    input a, b;
    output y;
    assign y = a|b;
endmodule