summaryrefslogtreecommitdiff
path: root/manual/PRESENTATION_ExAdv/red_or3x1_test.v
blob: bcdd32cbf81655a70629679675181215b5e1b9d7 (plain)
1
2
3
4
5
module test (A, Y);
    input [6:0] A;
    output Y;
    assign Y = |A;
endmodule