1
0
mirror of synced 2026-04-14 09:19:24 +00:00
Files
YosysHQ.yosys/tests/lut/map_mux.v

6 lines
82 B
Verilog

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