Difference between revisions of "Assembler:Commands:POPFD"

From Cheat Engine
Jump to navigation Jump to search
(Created page with ''''command''' popfd POPs (clears) the EFLAGS register (32 bit) from the stack. Note: Not available in 64 bit mode. === Command Parameters === <none> == Examples == po…')
 
Line 2: Line 2:
  
 
POPs (clears) the EFLAGS register (32 bit) from the stack.
 
POPs (clears) the EFLAGS register (32 bit) from the stack.
 +
 +
Used to restore state after a call to [[Assembler:Commands:PUSHFD|PUSHFD]].
  
 
Note: Not available in 64 bit mode.
 
Note: Not available in 64 bit mode.
Line 20: Line 22:
 
== External links ==
 
== External links ==
 
* [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]
 
* [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 10:22, 13 March 2017

command popfd

POPs (clears) the EFLAGS register (32 bit) from the stack.

Used to restore state after a call to PUSHFD.

Note: Not available in 64 bit mode.

Command Parameters

<none>


Examples

popfd


See also

External links