Difference between revisions of "Assembler:Commands:DIVSS"
Jump to navigation
Jump to search
(Created page with 'Category:Assembler '''command''' divss ''destination, source'' Divides the destination operand by source operand. Used for Dividing Scalar Single-Precision Floating-Point Va…') |
|||
Line 14: | Line 14: | ||
</div> | </div> | ||
− | + | ||
=== Command Parameters === | === Command Parameters === | ||
{|width="85%" cellpadding="10%" cellpadding="5%" cellspacing="0" border="0" | {|width="85%" cellpadding="10%" cellpadding="5%" cellspacing="0" border="0" |
Revision as of 08:51, 27 November 2017
command divss destination, source
Divides the destination operand by source operand. Used for Dividing Scalar Single-Precision Floating-Point Values. The divss command can only be used with xmm registers.
Destination = Destination / Source
Divides the low single-precision floating-point value in the destination operand (first operand) by the low single-precision floating-point value in the source operand (second operand), and stores the single-precision floating-point result in the destination operand. The source operand can be an XMM register or a 32-bit memory location. The destination operand is an XMM register. The three high-order doublewords of the destination operand remain unchanged.
Command Parameters
Parameter | Description |
---|---|
destination | The destination operand |
source | The source operand |
Examples
divss xmm0,xmm1
divss xmm3,[edx+110]
divss xmm15,[rdx+10]
divss xmm5,[00123abc]
divss xmm7,[UserDefinedSymbol]