Ones Complement Examples
-5 = % 11111010 = $ FA+5 = % 00000101 = $ 05+127 = % 01111111 = $ 7F -127 = % 10000000 = $ 80+ 0 = % 00000000 = $ 00 - 0 = % 11111111 = $ FF
For 8 bits, can represent the signed integers -127 to +127.
For N bits, can represent the signed integers
-2(N-1) - 1 to + 2(N-1) - 1