Law Chew Lim
March 29th, 1999, 09:34 PM
Sorry,
Here is another method...but it will overfloat
a = (a << 4) & b;
b = a;
b = b >> 4;
a = a << 4;
a = a >> 4;
or something like that...
but the best one is the XOR method...
Here is another method...but it will overfloat
a = (a << 4) & b;
b = a;
b = b >> 4;
a = a << 4;
a = a >> 4;
or something like that...
but the best one is the XOR method...