3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 01:24:10 +00:00
yosys/manual/PRESENTATION_ExAdv/red_or3x1_test.v
2014-02-16 13:45:47 +01:00

6 lines
82 B
Verilog

module test (A, Y);
input [6:0] A;
output Y;
assign Y = |A;
endmodule