_loadbe_i32
Classification
Other, Load, CPUID Test: MOVBE
Header File
Instruction
MOVBE r32, m32
Synopsis
_loadbe_i32(void const * ptr);
Description
Load 32 bits from memory, perform a byte swap operation, and store the result in "dst".
Operation
FOR j := 0 to 3
i := j*8
dst[i+7:i] := MEM[ptr+31-i:ptr+24-i]
ENDFOR