Forum Discussion
Altera_Forum
Honored Contributor
15 years agoWhat FvM is talking about is the problems that happen when you multiply the two most negative numbers i.e.
A is 2 bits (1 sign bit + 1 bit) B is 2 bits (1 sign bit + 1 bit) Both A and B can represent decimal numbers between [-2 .. 1] But if A=-2 and B=-2 then a overflow will occur and you need to take care of that. FvM correct me if I'm wrong here.