I need to convert a signed decimal number (255) into 8-bit two's complement for a HW problem.
My problem is that I'm not sure how to make a number like 255 positive with 8-bits, because I believe the range is -128 to 127, correct?
If 01111111 is 127, then how can I get 255 into binary with just 8 bits.
I think I just don't understand if "signed" is only referring to the decimal number or if it also refers to the binary number.