Difference between revisions of "Assembler:Commands:NOP"

From Cheat Engine
Jump to navigation Jump to search
(Created page with ''''command''' nop No Operation. Usually used when removing original code. Performs no operation. This instruction is a one-byte instruction that takes up space in the instruc…')
 
Line 5: Line 5:
 
Usually used when removing original code.
 
Usually used when removing original code.
  
Performs no operation.  
+
 
This instruction is a one-byte instruction that takes up space in the instruction stream  
+
<div style="padding:2px;border:1px dashed #2f6fab;background-color:#f4f4f4;">
but does not affect the machine context, except the EIP register.
+
Performs no operation. This instruction is a one-byte instruction that takes up space in the instruction stream but does not affect the machine context, except the EIP register.
  
 
The NOP instruction is an alias mnemonic for the <code>XCHG (E)AX, (E)AX</code> instruction.
 
The NOP instruction is an alias mnemonic for the <code>XCHG (E)AX, (E)AX</code> instruction.
 +
 +
[http://x86.renejeschke.de/html/file_module_x86_id_217.html x86.renejeschke.de/html/file_module_x86_id_217.html]
 +
</div>
 +
  
 
=== Command Parameters ===
 
=== Command Parameters ===
Line 21: Line 25:
 
* [[Cheat_Engine:Auto Assembler|Auto Assembler]]
 
* [[Cheat_Engine:Auto Assembler|Auto Assembler]]
 
* [[Assembler:Commands|Assembler Commands]]
 
* [[Assembler:Commands|Assembler Commands]]
 
* [http://x86.renejeschke.de/html/file_module_x86_id_217.html x86.renejeschke.de/html/file_module_x86_id_217.html]
 
  
 
== External links ==
 
== External links ==

Revision as of 08:04, 14 March 2017

command nop

No Operation.

Usually used when removing original code.


Performs no operation. This instruction is a one-byte instruction that takes up space in the instruction stream but does not affect the machine context, except the EIP register.

The NOP instruction is an alias mnemonic for the XCHG (E)AX, (E)AX instruction.

x86.renejeschke.de/html/file_module_x86_id_217.html


Command Parameters

<none>

Examples

nop

See also

External links