Difference between revisions of "Assembler:Commands:SUBSS"

From Cheat Engine
Jump to navigation Jump to search
m
(Replaced content with '<span style="font-size:25px;color:red">Sorry! Content not available.</span>')
Line 1: Line 1:
[[Category:Assembler]]
+
<span style="font-size:25px;color:red">Sorry! Content not available.</span>
'''command''' subss ''destination, source''
 
 
 
Subtracts the source from the destination. Used for Subtracting Scalar Single-Precision Floating-Point Values. The subss command can only be used with xmm registers.
 
 
 
 
 
<pre>Destination = Destination - Source</pre>
 
 
 
 
 
<div style="padding:2px;border:1px dashed #2f6fab;background-color:#f4f4f4;">
 
Subtracts the low single-precision floating-point value in the source operand (second operand) from 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.
 
 
 
[https://c9x.me/x86/html/file_module_x86_id_312.html c9x.me/x86/html/file_module_x86_id_312.html]
 
</div>
 
 
 
 
 
=== Command Parameters ===
 
{|width="85%" cellpadding="10%" cellpadding="5%" cellspacing="0" border="0"
 
!align="left"|Parameter
 
!style="width: 80%;background-color:white;" align="left"|Description
 
|-
 
|destination
 
|xmm
 
|-
 
|source
 
|xmm / m32
 
|}
 
 
 
 
 
== Examples ==
 
 
 
subss xmm0,xmm1
 
 
 
subss xmm3,[edx+110]
 
 
 
subss xmm15,[rdx+10]
 
 
 
subss xmm5,[00123abc]
 
 
 
subss xmm7,[UserDefinedSymbol]
 
 
 
 
 
{{AssemblerCommandSeeAlso}}
 
 
 
== External links ==
 
* [https://c9x.me/x86/ c9x.me/x86/]
 
* [http://ref.x86asm.net/ ref.x86asm.net]
 
* [https://wikipedia.org/wiki/X86_instruction_listings wikipedia.org/wiki/X86_instruction_listings]
 

Revision as of 16:08, 16 March 2019

Sorry! Content not available.