For this assignment I can only use basic bitwise operators & no control structures, so I've come up with this code so far to convert sign-magnitude to two's complement.
int sm2tc(int x) {
// invert and add 1
// problem: sm has 2 zeros.. 1000...000 & 0000...000
int tmin = 1 << 31;
int mask = x >> 31; // determine sign of x
int mask2 = ~tmin; //negate tmin to get 0111111...
int first = (x ^ mask) + (~mask + 1) ;
int second = first & mask2; // turns of MSB
return second;
}
Any tips on where I've gone wrong?
intbeing 32 bits. Useint32_tto be sure (stdint.h). – rightfold Sep 23 '11 at 20:10