blob: 850083fd037f4e6fe3d2cc3e55de970afce939ba [file] [log] [blame]
#include <intrin.h>
/* for x86 only */
unsigned short __readfsword(unsigned __LONG32 Offset)
{
unsigned short ret;
__asm__ volatile ("movw %%fs:%1,%0"
: "=r" (ret) ,"=m" ((*(volatile __LONG32 *) Offset)));
return ret;
}