The most common method of representing signed integers.
Designates the most significant byte to be the negative version of itself.
Is also equivalent to 1’s Complement + 1.
Replaces Signed Magnitude Method
Computing Negative Numbers
Its a rather simple process
- we have a positive number
- flip each bit’s polarity
- Add one to the flipped value
- Solve
- The final negative value is
Converting Unsigned to Signed
Simply Add to the unsigned number, but ensure the sum is the same bit-width.