initial import
[yosys.git] / tests / hana / test_simulation_techmap_mux_8_test.v
1 module test(input [7:0] in, input [2:0] select, output reg out);
2
3 always @( in or select)
4 case (select)
5 0: out = in[0];
6 1: out = in[1];
7 2: out = in[2];
8 3: out = in[3];
9 4: out = in[4];
10 5: out = in[5];
11 6: out = in[6];
12 7: out = in[7];
13 endcase
14 endmodule