summaryrefslogtreecommitdiff
path: root/tests/hana/test_simulation_techmap_or_19_tech.v
blob: 745d7b71cd1f0e3de5524a6f3bd19ccf7708eca9 (plain)
1
2
3
4
5
6
7
module TECH_OR18(input [17:0] in, output out);
assign out = |in;
endmodule

module TECH_OR4(input [3:0] in, output out);
assign out = |in;
endmodule