yosys/tests/lut/map_mux.v

6 lines
82 B
Coq
Raw Normal View History

module top(...);
input a, b, s;
output y;
assign y = s?a:b;
endmodule