Difference between revisions of "Assembler:Commands:POP"

From Cheat Engine
Jump to navigation Jump to search
Line 38: Line 38:
 
* [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 pop operand

POPs (restores) data from the stack.

Used to restore state after a call to PUSH.


Loads the value from the top of the stack to the location specified with the destination operand and then increments the stack pointer. The destination operand can be a general-purpose register, memory location, or segment register.

x86.renejeschke.de/html/file_module_x86_id_248.html


Command Parameters

Parameter Description
operand The registery or data to pop


Examples

pop ax
pop eax
pop rax

See also

External links