yosys/manual/PRESENTATION_ExAdv/red_or3x1_test.v

6 lines
82 B
Coq
Raw Normal View History

2014-02-16 06:45:47 -06:00
module test (A, Y);
input [6:0] A;
output Y;
assign Y = |A;
endmodule