_storebe_i64
Classification
Other, Store, CPUID Test: MOVBE
Header File
Instruction
MOVBE m64, r64
Synopsis
_storebe_i64(void * ptr, __int64 data);
Description
Perform a bit swap operation of the 64 bits in "data", and store the results to memory.
Operation
addr := MEM[ptr]
FOR j := 0 to 7
i := j*8
MEM[ptr+i+7:ptr+i] := data[63-i:56-i]
ENDFOR