Assembler:Commands:MOVSD

From Cheat Engine
Jump to navigation Jump to search

command movsd destination, source

Copies the data from source operand to destination operand. Used for Moving Scalar Double-Precision Floating-Point Values. The movsd command can only be used with xmm registers.


Moves a scalar double-precision floating-point value from the source operand (second operand) to the destination operand (first operand). The source and destination operands can be XMM registers or 64-bit memory locations. This instruction can be used to move a double-precision floating-point value to and from the low quadword of an XMM register and a 64-bit memory location, or to move a double-precision floating-point value between the low quadwords of two XMM registers. The instruction cannot be used to transfer data between memory locations.

When the source and destination operands are XMM registers, the high quadword of the destination operand remains unchanged. When the source operand is a memory location and destination operand is an XMM registers, the high quadword of the destination operand is cleared to all 0s.

c9x.me/x86/html/file_module_x86_id_204.html


Command Parameters

Parameter Description
destination xmm / m64
source xmm / m64


Examples

movsd xmm0,xmm1
movsd [edx+110],xmm4
movsd [rdx+10],xmm8
movsd xmm3,[edx+110]
movsd xmm15,[rdx+10]
movsd xmm5,[00123abc]
movsd [00123abc],xmm12
movsd xmm7,[UserDefinedSymbol]
movsd [UserdefinedSymbol],xmm10


See also

External links