Difference between revisions of "Assembler:Commands:ADDSD"

From Cheat Engine
Jump to navigation Jump to search
(Created page with 'Category:Assembler '''command''' addsd ''destination, source'' Adds the source to the destination. Used for Adding Scalar Double-Precision Floating-Point Values. The addsd c…')
 
m (Examples)
Line 32: Line 32:
 
  addsd xmm0,xmm1
 
  addsd xmm0,xmm1
  
  addsd xmm3,[edx+110]
+
  addsd xmm3,[rdx+10]
 
 
addsd xmm15,[rdx+10]
 
  
 
  addsd xmm5,[00123abc]
 
  addsd xmm5,[00123abc]

Revision as of 01:26, 27 November 2017

command addsd destination, source

Adds the source to the destination. Used for Adding Scalar Double-Precision Floating-Point Values. The addsd command can only be used with xmm registers.


Destination = Destination + Source


Adds the low double-precision floating-point values from the source operand (second operand) and the destination operand (first operand), and stores the double-precision floating-point result in the destination operand. The source operand can be an XMM register or a 64-bit memory location. The destination operand is an XMM register. The high quadword of the destination operand remains unchanged.

x86.renejeschke.de/html/file_module_x86_id_8.html


Command Parameters

Parameter Description
destination The destination operand
source The source operand


Examples

addsd xmm0,xmm1
addsd xmm3,[rdx+10]
addsd xmm5,[00123abc]
addsd xmm7,[UserDefinedSymbol]


See also

External links