Converting negative denary to binary two's complement
1. Find the binary equivalent of the denary number (ignoring the -ve sign)
2. Add extra 0 bits before the MSB, to format binary number to 8 bits
3. Convert binary number to one's complement (flip the bits)
4. Convert binary number to two's complement (add 1)