aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lut/map_xor.v
blob: 708a05789a3363e98fdb271c9e160da35715cbca (plain)
1
2
3
4
5
module top(...);
    input a, b;
    output y;
    assign y = a^b;
endmodule