Difference between revisions of "Assembler:Commands:ADDSD"
Jump to navigation
Jump to search
m (→Examples) |
m (Reverted edits by This content is not available (Talk) to last revision by OldCheatEngineUser) |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 11: | Line 11: | ||
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. | 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. | ||
− | [ | + | [https://c9x.me/x86/html/file_module_x86_id_8.html c9x.me/x86/html/file_module_x86_id_8.html] |
</div> | </div> | ||
Line 21: | Line 21: | ||
|- | |- | ||
|destination | |destination | ||
− | | | + | |xmm |
|- | |- | ||
|source | |source | ||
− | | | + | |xmm / m64 |
|} | |} | ||
Line 32: | Line 32: | ||
addsd xmm0,xmm1 | addsd xmm0,xmm1 | ||
− | addsd xmm3,[rdx+10] | + | addsd xmm3,[edx+110] |
+ | |||
+ | addsd xmm15,[rdx+10] | ||
addsd xmm5,[00123abc] | addsd xmm5,[00123abc] | ||
Line 42: | Line 44: | ||
== External links == | == External links == | ||
− | * [ | + | * [https://c9x.me/x86/ c9x.me/x86/] |
* [http://ref.x86asm.net/ ref.x86asm.net] | * [http://ref.x86asm.net/ ref.x86asm.net] | ||
* [https://wikipedia.org/wiki/X86_instruction_listings wikipedia.org/wiki/X86_instruction_listings] | * [https://wikipedia.org/wiki/X86_instruction_listings wikipedia.org/wiki/X86_instruction_listings] |
Latest revision as of 19:07, 18 March 2019
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.
Command Parameters[edit]
Parameter | Description |
---|---|
destination | xmm |
source | xmm / m64 |
Examples[edit]
addsd xmm0,xmm1
addsd xmm3,[edx+110]
addsd xmm15,[rdx+10]
addsd xmm5,[00123abc]
addsd xmm7,[UserDefinedSymbol]