Difference between revisions of "Assembler:Commands:PUSHA"

From Cheat Engine
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
[[Category:Assembler]]
 
'''command''' pusha
 
'''command''' pusha
  
Line 8: Line 9:
 
Note: Not available in 64 bit mode.
 
Note: Not available in 64 bit mode.
  
<div style="padding:2px;border:1px dashed #2f6fab;background-color:#f4f4f4;">
 
[http://x86.renejeschke.de/html/file_module_x86_id_270.html x86.renejeschke.de/html/file_module_x86_id_270.html]
 
</div>
 
  
 
+
{{AssemblerCommandParametersNone}}
=== Command Parameters ===
 
&lt;none&gt;
 
  
 
== Examples ==
 
== Examples ==
 
  pusha
 
  pusha
  
== 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]
 

Latest revision as of 15:32, 3 January 2018

command pusha

This instruction PUSHes all the general purpose registers onto the stack in the following order: AX, CX, DX, BX, SP, BP, SI, DI. The value of SP pushed is the value before the instruction is executed. It is useful for saving state before an operation that could potential change these registers.

Note: Not available in 64 bit mode.


Command Parameters[edit]

<none>

Examples[edit]

pusha

See also[edit]

External links[edit]