Forum Discussion
Altera_Forum
Honored Contributor
11 years agoThanx for fast reply, however it was a simple typo, so now synthesis multstyle works fine :). So not to create one more thread, ill ask here, for example i need to partially connect some modules output (let it be 8 most significant bits of 16). The straightforward solution is:
mult mult_inst(
.a(a_8bit),
.b(b_8bit),
.res(c_16bit)
);
assign c_8bit = c_16bit May there be more elegant approach (without this intermediate wire) ?