module sumprod(a, b, c, sum, prod); input [7:0] a, b, c; output [7:0] sum, prod; {* sumstuff *} assign sum = a + b + c; {* *} assign prod = a * b * c; endmodule /git.panaceas.org/cgit/iCE40/yosys/atom/tests/techmap/recursive.v?h=master' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/tests/techmap/recursive.v
blob: d281b21d8744b8e59e8c32d22878fe276e31fd56 (plain)
1
2
3
4
5
6
7
8