I have the next code:
mov al, -5
add al, 132
add al, 1
As I check it, the overflow flag and the carry flag will set in the first operation, and in the second, only the overflow will set.
But I don't understand why:
Whats wrong? Thanks.
Overflow occurs when the result of adding two positive numbers is negative or
the result of adding two negative numbers is positive.
For instance:
+127+1=?
+127=0111 1111
+1=0000 0001
---------
1000 0000
As we look at the sign bits of the two operands and the sign bit of the result, we find out that Overflow occurred and the answer is incorrect.