Operation: | PUSH |
Function: | Push Value Onto Stack |
Syntax: | PUSH |
Instructions | OpCode | Bytes | Cycles | Flags |
PUSH iram addr | 0xC0 | 2 | 2 | None |
Description: PUSH "pushes" the value of the specified iram addr onto the stack. PUSH first increments the value of the Stack Pointer by 1, then takes the value stored in iram addr and stores it in Internal RAM at the location pointed to by the incremented Stack Pointer.
See Also: POP, Instruction Set