Calculate 111000_2 - 1100111_2 and convert the result into a 8-Bit two's complement.
My suggestion:
I'm inverting 1100111_2 into 0011000_2 and add +1, so the result would be: 0011001_2.
Then I'm adding this result to 0111000_2 and get 01010001_2.
But this is wrong. Could anyone help me out?