2022_2s_Complement_Analysis.pdf

Example 2's Complement.pdf

💡Recall

🖋 Notes

Representation vs Interpretations

Screenshot 2022-12-08 at 20.47.17.png

Two’s complement representation of a negative value is the value 2^n-V, where V is the absolute valued of the represented number.

Example

Find the binary configuration of an initial configuration

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)?

Variant 1 (Official)

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

Variant 2 (derived from the 2’s complement definition)

Variant 3

Variant 4

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]

Why do we need to study the 2’s complement? Is it useful for us as programmers? In which way?

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