Difference between revisions of "Assembler:Commands:MULSS"

From Cheat Engine
Jump to navigation Jump to search
(Created page with 'Category:Assembler '''command''' mulss ''destination, source'' Multiplies the source operand by destination operand. Used for Multiplying Scalar Single-Precision Floating-Po…')
 
Line 14: Line 14:
 
</div>
 
</div>
  
enem
+
 
 
=== 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:53, 27 November 2017

command mulss destination, source

Multiplies the source operand by destination operand. Used for Multiplying Scalar Single-Precision Floating-Point Values. The mulss command can only be used with xmm registers.


Destination = Destination * Source


Multiplies the low single-precision floating-point value from the source operand (second operand) by the low single-precision floating-point value in the destination operand (first 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.

x86.renejeschke.de/html/file_module_x86_id_214.html


Command Parameters

Parameter Description
destination The destination operand
source The source operand


Examples

mulss xmm0,xmm1
mulss xmm3,[edx+110]
mulss xmm15,[rdx+10]
mulss xmm5,[00123abc]
mulss xmm7,[UserDefinedSymbol]


See also

External links