Forum Discussion
Altera_Forum
Honored Contributor
11 years agoFinally I found solution. If we don't register multiplier output, it infers adder also into dsp.
with the following code. wire [35:0] mul_out = ((mul_a_in[17:0]) * (mul_b_in[17:0])); assign adder_out = $signed(add_c_in[35:0] + mul_out); it can do (36 bit + (18 x 18)).