_storebe_i32
Classification
Other, Store, CPUID Test: MOVBE
Header File
immintrin.h
Instruction
MOVBE m32, r32
Synopsis
 _storebe_i32(void * ptr, int data);
Description
Perform a bit swap operation of the 32 bits in "data", and store the results to memory.
Operation
addr := MEM[ptr]
FOR j := 0 to 3
	i := j*8
	MEM[ptr+i+7:ptr+i] := data[31-i:24-i]
ENDFOR