Difference between revisions of "Assembler:Commands:PUSH"
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 8: | Line 8: | ||
Decrements the stack pointer and then stores the source operand on the top of the stack. | Decrements the stack pointer and then stores the source operand on the top of the stack. | ||
− | [http://x86 | + | [http://c9x.me/x86/html/file_module_x86_id_269.html c9x.me/x86/html/file_module_x86_id_269.html] |
</div> | </div> | ||
Line 32: | Line 32: | ||
{{AssemblerCommandSeeAlso}} | {{AssemblerCommandSeeAlso}} | ||
− | + | {{Template:AssemblerCommandExternalLinks}} | |
− | |||
− | |||
− | |||
− | |||
− |
Latest revision as of 16:03, 3 January 2018
command push operand
PUSHes (saves) data onto the stack.
Decrements the stack pointer and then stores the source operand on the top of the stack.
Command Parameters[edit]
Parameter | Description |
---|---|
operand | The registery or data to push |
Examples[edit]
push ax
push eax
push rax