I'm currently doing twos complement in my course, using 8 bits I'm trying to complete this operation, its -85 + -44. I missed a lecture so I have tried to catch up on my own and this is what I have come up with, tell me if I'm right or wrong.
-85
85 = 01010101
10101010
+ 1
---------
-85= 10101011
So that's the first one.
-44
44 = 00101100
11010011
+ 1
---------
-44= 11010100
Then Adding them together.
-85 10101011
-44 11010100
+ --------
101111111
So is that the answer? Do I remove the carry bit or keep it because it's 8bit?