2ec57fa93e582d07d1901884c2def94b0f3e9f19
[yosys.git] / tests / hana / test_simulation_or_4_test.v
1 module test(input [2:0] in, output out);
2 assign out = in[0] || in[1] || in[2];
3 endmodule