Difference between revisions of "Assembler:Commands:DIVSD"
Jump to navigation
Jump to search
m |
m |
||
Line 1: | Line 1: | ||
[[Category:Assembler]] | [[Category:Assembler]] | ||
− | '''command''' | + | '''command''' divsd ''destination, source'' |
Divides the destination operand by source operand. Used for Dividing Scalar Double-Precision Floating-Point Values. The divss command can only be used with xmm registers. | Divides the destination operand by source operand. Used for Dividing Scalar Double-Precision Floating-Point Values. The divss command can only be used with xmm registers. |
Revision as of 00:32, 3 January 2018
command divsd destination, source
Divides the destination operand by source operand. Used for Dividing Scalar Double-Precision Floating-Point Values. The divss command can only be used with xmm registers.
Destination = Destination / Source
Divides the low double-precision floating-point value in the destination operand (first operand) by the low double-precision floating-point value in the source operand (second 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
Parameter | Description |
---|---|
destination | xmm |
source | xmm / m64 |
Examples
divsd xmm0,xmm1
divsd xmm3,[edx+110]
divsd xmm15,[rdx+10]
divsd xmm5,[00123abc]
divsd xmm7,[UserDefinedSymbol]