_storebe_i16
Classification
Other, Store, CPUID Test: MOVBE
Header File
immintrin.h
Instruction
MOVBE m16, r16
Synopsis
 _storebe_i16(void * ptr, short data);
Description
Perform a bit swap operation of the 16 bits in "data", and store the results to memory.
Operation
FOR j := 0 to 1
	i := j*8
	MEM[ptr+i+7:ptr+i] := data[15-i:8-i]
ENDFOR