11 lines
148 B
C
11 lines
148 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
unsigned int mask = 0x1230;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
mask = _rotr( mask, 4 );
|
||
|
printf( "%04X\n", mask );
|
||
|
}
|