I have two numbers. The negative one is translated using 2's complement.
$$ a = 160_{10} = A0_{16} = 1010 0000_{2} \\ b = -28_{10} = E4_{16} = 1110 0100_{2} $$
And I have to perform the following operation $a - b$. I use borrowing up to the very last bit, but then I have a situation like.
$$ \begin{matrix} & 0 & 1 \\ - & 1 & 1 \\ & ? & 0 \\ \end{matrix} $$
Should I borrow from something imaginary? In decimal $1 - 3 = -2$, so the answer is $BC$, but how do you reason about the negative $2$ here?