_loadbe_i16
Classification
Other, Load, CPUID Test: MOVBE
Header File
immintrin.h
Instruction
MOVBE r16, m16
Synopsis
 _loadbe_i16(void const * ptr);
Description
Load 16 bits from memory, perform a byte swap operation, and store the result in "dst".
Operation
FOR j := 0 to 1
	i := j*8
	dst[i+7:i] := MEM[ptr+15-i:ptr+8-i]
ENDFOR