Forum Discussion
Altera_Forum
Honored Contributor
13 years agoI tried something very similar to what BadOmen suggested and it worked:
input signed b;
input signed c;
input signed d;
output signed e;
wire signed g;
assign g = b * c;
assign e = g / d;Thank you for telling me about the keep keyword. That will be very useful. FvM, I think you mean chapter 4.4.1. Thank you for your help.