How to rotate lower and upper half-word of a 32-bit variable
Posted on December 28, 2015 at 10:23Hi. I would like to rotate lower and upper half-word of a 32-bit variable as in next example: var = 0x12345678; --> I would like to get 0x56781234; How could I do this as fast as possible (time is critical)? I sa...