Signed Decimal to Hex conversion
Step 1: Know what format you are converting to!!! You must know if you are converting the signed decimal to SM, 1s complement, or 2s complement. Convert +34 to all three formats. Convert -20 to all three formats
Step 2: Ignore the sign, convert the magnitude of the number to binary. 34 = 2 x 16 + 2 = $ 22 = % 00100010 20 = 1 x 16 + 4 = $ 14 = % 00010100