I want to convert -95 to sign/magnitude form using 12 bits.
Would it be 000001011111 for magnitude and an extra 1 bit to the left of the last 1 to make it negative?
=> 000011011111
I wasn’t sure whether to put the sign bit all the way on the left (the MSB).
MSB as sign bit is a good choice. Languages like C do the same.