Difference between revisions of "Assembler:Commands:POPF"

From Cheat Engine
Jump to navigation Jump to search
Line 9: Line 9:
 
<div style="padding:2px;border:1px dashed #2f6fab;background-color:#f4f4f4;">
 
<div style="padding:2px;border:1px dashed #2f6fab;background-color:#f4f4f4;">
 
Increments the stack pointer and stores the value in the FLAGS register.
 
Increments the stack pointer and stores the value in the FLAGS register.
 
[http://x86.renejeschke.de/html/file_module_x86_id_250.html x86.renejeschke.de/html/file_module_x86_id_250.html]
 
 
</div>
 
</div>
  
Line 21: Line 19:
 
{{AssemblerCommandSeeAlso}}
 
{{AssemblerCommandSeeAlso}}
  
== External links ==
+
{{Template:AssemblerCommandExternalLinks}}
* [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]
 
* [http://x86.renejeschke.de/ x86.renejeschke.de]
 
* [http://www.asmpedia.org/index.php?title=Main_Page asmpedia.org]
 
* [http://ref.x86asm.net/ ref.x86asm.net]
 

Revision as of 15:30, 3 January 2018

command popf

POPs (restores) the FLAGS register (16 bit) from the stack.

Used to restore state after a call to PUSHF.


Increments the stack pointer and stores the value in the FLAGS register.


Command Parameters

<none>

Examples

popf

See also

External links