Difference between revisions of "Assembler:Commands:PUSHAD"
Jump to navigation
Jump to search
(Created page with ''''command''' pushad This instruction PUSHes all the general purpose registers onto the stack in the following order: '''EAX''', '''ECX''', '''EDX''…') |
|||
Line 20: | Line 20: | ||
* [[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_270.html x86.renejeschke.de/html/file_module_x86_id_270.html] | ||
== External links == | == External links == |
Revision as of 05:32, 14 March 2017
command pushad
This instruction PUSHes all the general purpose registers onto the stack in the following order: EAX, ECX, EDX, EBX, ESP, EBP, ESI, EDI. The value of ESP 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
<none>
Examples
pushad