summaryrefslogtreecommitdiff
path: root/manual/PRESENTATION_ExAdv/red_or3x1_cells.v
blob: 0750a130794016e704bb8a56327b18f6e161bf3b (plain)
1
2
3
4
5
module OR3X1(A, B, C, Y);
    input A, B, C;
    output Y;
    assign Y = A | B | C;
endmodule