Difference between revisions of "Assembler:Commands:POPAD"

From Cheat Engine
Jump to navigation Jump to search
Line 28: Line 28:
 
* [https://wikipedia.org/wiki/X86_instruction_listings wikipedia.org/wiki/X86_instruction_listings]
 
* [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]
 
* [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://www.asmpedia.org/index.php?title=Main_Page asmpedia.org]

Revision as of 04:15, 15 March 2017

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.


x86.renejeschke.de/html/file_module_x86_id_249.html


Command Parameters

<none>

Examples

popad

See also

External links