Remember we reverse the bits to get the absolute value disregarding the left most, sign bit
To convert a 2's compliment negative value to a positive number, invert all the bits (NOT) and add 1.

For example 2's compliment -1 = FFFF
invert = 0000, add 1 = 0001