Assembler:Commands:MOVSD

From Cheat Engine
Revision as of 08:50, 27 November 2017 by OldCheatEngineUser (talk | contribs) (Created page with 'Category:Assembler '''command''' movsd ''destination, source'' Copies the data from source operand to destination operand. Used for Moving Scalar Double-Precision Floating-P…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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.

x86.renejeschke.de/html/file_module_x86_id_204.html

enem

Command Parameters

Parameter Description
destination The destination operand
source The source operand


Examples

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


See also

External links