Difference between revisions of "Assembler:Commands:POPAD"
Jump to navigation
Jump to search
m (Reverted edits by This content is not available (Talk) to last revision by TheyCallMeTim13) |
|||
Line 1: | Line 1: | ||
− | + | [[Category:Assembler]] | |
+ | '''command''' popad | ||
+ | |||
+ | [[Assembler:Commands:POP|POP]]s all the general purpose registers off the stack in the reverse order of [[Assembler:Commands:PUSHAD|PUSHAD]]. | ||
+ | That is '''EDI''', '''ESI''', '''EBP''', '''ESP''', '''EBX''', '''EDX''', '''ECX''', '''EAX'''. | ||
+ | |||
+ | Used to restore state after a call to [[Assembler:Commands:PUSHAD|PUSHAD]]. | ||
+ | |||
+ | Note: Not available in 64 bit mode. | ||
+ | |||
+ | |||
+ | {{AssemblerCommandParametersNone}} | ||
+ | |||
+ | == Examples == | ||
+ | popad | ||
+ | |||
+ | {{AssemblerCommandSeeAlso}} | ||
+ | |||
+ | {{Template:AssemblerCommandExternalLinks}} |
Latest revision as of 19:08, 18 March 2019
command popad
POPs all the general purpose registers off the stack in the reverse order of PUSHAD. That is EDI, ESI, EBP, ESP, EBX, EDX, ECX, EAX.
Used to restore state after a call to PUSHAD.
Note: Not available in 64 bit mode.
Command Parameters[edit]
<none>
Examples[edit]
popad