bc676c70b57f4bafacc3d7f89b236d4c847b8f47
[yosys.git] / tests / hana / test_simulation_techmap_mux_0_test.v
1 module test(input [1:0] in, input select, output reg out);
2
3 always @( in or select)
4 case (select)
5 0: out = in[0];
6 1: out = in[1];
7 endcase
8 endmodule