_loadbe_i64
Classification
Other, Load, CPUID Test: MOVBE
Header File
Instruction
MOVBE r64, m64
Synopsis
_loadbe_i64(void const * ptr);
Description
Load 64 bits from memory, perform a byte swap operation, and store the result in "dst".
Operation
FOR j := 0 to 7
i := j*8
dst[i+7:i] := MEM[ptr+63-i:ptr+56-i]
ENDFOR