Forum Discussion
Altera_Forum
Honored Contributor
10 years agoFloating point addition in vhdl
Hii I want to add 4 floating point no.what will be the result range.I am using library ieee_proposed; use ieee_proposed.fixed_pkg.all; this package.For example if I want to add two floating...
Altera_Forum
Honored Contributor
10 years agoYes, now you've added brackets, it will only need 2 extra bits.
But a+b+c+d will break down into:
result := (((a+b) + c) + d);
which does require 3 extra bits.