2022_2s_Complement_Analysis.pdf
So, we have to determine the 2’s complement of the configuration 1001 0011. How can we obtain the 2’s complement of a number (represented in memory so we are talking about base 2)?
Subtracting the binary contents of the location from 100 ... 00 (where the number of zeros are exactly the same as the number of bits of the location to be complemented).
1 0000 0000 – 1001 0011
———————-
0110 1101 = 6Dh = 96+13 = 109 (so the 2’complement on 8 bits of 147 is 109)
So, the value of 1001 0011 in the SIGNED interpretation is -109
Faster from a practical point of view
Reversing the values of all bits of the initial binary number (value 0 becomes 1 and value 1 becomes 0), after which we add 1 to the obtained value
According to this rule, we start from 1001 0011 and reverse the values of all bits, obtaining 0110 1100 after which we add 1 to the obtained value: 0110 1100 + 1 = 0110 1101
So, the value of 1001 0011 in the SIGNED interpretation is -109
The MOST faster practical alternative, if we are interested ONLY in the absolute value in base 10 of the 2’s complement
Rule derived from the definition of the 2’s complement: The sum of the absolute values of the two complementary values is the cardinal of the set of values representable on that size.
On 8 bits we can represent 2^8 values = 256 values ([0..255] or [-128..+127])
On 16 bits we can represent 2^16 values = 65536 values ([0..65535] or [-32768,+32767])
On 32 bits we can represent 2^32 values = 4.294.967.296 values (…)
So, on 8 bits, the 2’s complement of 1001 0011 (= 93h = 147) is 256 – 147 = 109, so the corresponding value in SIGNED interpretation for 1001 0011 is -109.
[0..255]
[-128..+127]
[0..65535]
[-32768..+32767]
1001 0011 (= 93h = 147), so in the UNSIGNED interpretation 1001 0011 = 147
Which is the signed interpretation of the representation?
Which is the signed interpretation of 1001 0011?
a) 01101101
b) -109
c) 6Dh
Which is the signed interpretation of 93h?
a) 01101101
b) -109
c)6Dh
Which is the signed interpretation of 147?
a) 01101101
b) -109
c) 6Dh
d) +147
e) None of the above
THE QUESTION IS TOTALLY INCORRECT !!!!!! because we cannot have DIFFERENT interpretations in base 10 of numbers ALREADY expressed in base 10
1 0000 0000 – 1001 0011
———————-
01101101 = 6Dh = 96+13 = 109 (so the 2’complement on 8 bits of 147 is 109) So, the value of 1001 0011 in the SIGNED interpretation is -109
147 and -109 are two complementary values, in the sense that 1001 0011 = either 147, or -109 depending on the interpretation
So the complement of 147 is -109. Is it also true the other way around? Is -147 the complement of the 109? Let’s check 109 = 01101101, the 2’s complement of 01101101 is 10010011 = 147, so…
Which is the conclusion then?
Which is the binary representation for -147 ? 147 = 10010011, so … how can we obtain -147 ? -147 DOES NOT belong to the interval [-128..+127] admissible representation interval for “SIGNED integer represented on 1 byte”, so it follows that -147 CAN NOT be represented on 1 byte !! -147 belongs to [-32768..+32767] – admissible representation interval for “SIGNED integer represented on 2 bytes = 1 word”, so IN ASSEMBLY LANGUAGE -147 can be represented ONLY on Word !
147 on WORD is 00000000 10010011, its 2’s complement being 11111111 01101101,
so 11111111 01101101 = FF6Dh = -147 in the SIGNED interpretation
Check:
11111111 01101101 = FF6Dh = 65389 in the UNSIGNED interpretation, the sum of the absolute values of the two complementary values being 65389 + 147 = 65536 = the cardinal of the set of numbers representable on 1 WORD, so these 2 interpretations of the binary configuration 11111111 01101101 are correct and consistent
Two complementary values WILL NEVER BE part of the same admissible representation interval !!!!
Interpretation | 1001 0011 = 93h = 147 |
---|---|
UNSIGNED | 147 |
SIGNED | - (2’s complement of the initial binary configuration) |
Interpretation | 0XXX XXXX |
---|---|
UNSIGNED | the same |
SIGNED | the same |