Add ability to override verilog mode for verific -f command
[yosys.git] / tests / lut / map_mux.v
1 module top(...);
2 input a, b, s;
3 output y;
4 assign y = s?a:b;
5 endmodule