Some Examples
All hex numbers represent signed decimal in two’s complement format.
+ $ 01 = + 1-------- $ 00 = 0
Note there is a carry out, but the answer is correct. Can’t have 2’s complement overflow when adding positive and negative number.
+ $ 80 = -128-------- $ 7F = +127 (incorrect!!)
Added two negative numbers, got a positive number. Twos Complement overflow.