Difference between revisions of "Assembler:Commands:PUSHAD"
Jump to navigation
Jump to search
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | [[Category:Assembler]] | ||
'''command''' pushad | '''command''' pushad | ||
Line 9: | Line 10: | ||
− | + | {{AssemblerCommandParametersNone}} | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== Examples == | == Examples == | ||
pushad | pushad | ||
− | + | {{AssemblerCommandSeeAlso}} | |
− | |||
− | |||
− | |||
− | + | {{Template:AssemblerCommandExternalLinks}} | |
− | |||
− | |||
− | |||
− |
Latest revision as of 15:32, 3 January 2018
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[edit]
<none>
Examples[edit]
pushad