Difference between revisions of "Assembler:Commands:NOP"

From Cheat Engine
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 12: Line 12:
 
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]
+
[http://c9x.me/x86/html/file_module_x86_id_217.html c9x.me/x86/html/file_module_x86_id_217.html]
 
</div>
 
</div>
  
  
=== Command Parameters ===
+
{{AssemblerCommandParametersNone}}
&lt;none&gt;
 
  
 
== Examples ==
 
== Examples ==
 
  nop
 
  nop
  
== See also ==
+
{{AssemblerCommandSeeAlso}}
* [[Assembler]]
 
* [[Cheat_Engine:Auto Assembler|Auto Assembler]]
 
* [[Assembler:Commands|Assembler Commands]]
 
  
== External links ==
+
{{Template:AssemblerCommandExternalLinks}}
* [https://wikipedia.org/wiki/X86_instruction_listings wikipedia.org/wiki/X86_instruction_listings]
 
* [https://wikibooks.org/wiki/X86_Assembly/Other_Instructions wikibooks.org/wiki/X86_Assembly/Other_Instructions]
 
* [http://x86.renejeschke.de/ x86.renejeschke.de]
 
* [http://www.asmpedia.org/index.php?title=Main_Page asmpedia.org]
 
* [http://ref.x86asm.net/ ref.x86asm.net]
 

Latest revision as of 15:54, 3 January 2018

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.

c9x.me/x86/html/file_module_x86_id_217.html


Command Parameters[edit]

<none>

Examples[edit]

nop

See also[edit]

External links[edit]