yosys/docs/source/code_examples/techmap/red_or3x1_test.v

6 lines
82 B
Verilog

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