nop = 0 |
Stack: no changeDo nothing.
pop = 87 |
Stack: ..., any => ...Pop the top word from the stack.
pop2 = 88 |
Stack: ..., any2, any1 => ...Pop the top two words from the stack.
dup = 89 |
Stack: ..., any => ..., any, anyDuplicate the top word on the stack.
dup2 = 92 |
Stack: ..., any2, any1 => ..., any2, any1, any2, any1Duplicate the top two words on the stack.
dup_x1 = 90 |
Stack: ..., any2, any1 => ..., any1, any2, any1Duplicate the top word on the stack and insert the copy two words down in the stack.
dup2_x1 = 93 |
Stack: ..., any3, any2, any1 => ..., any2, any1, any3, any2, any1Duplicate the top two words on the stack and insert the copies two words down in the stack.
dup_x2 = 91 |
Stack: ..., any3, any2, any1 => ..., any1, any3, any2, any1Duplicate the top word on the stack and insert the copy three words down in the stack.
dup2_x2 = 94 |
Stack: ..., any4, any3, any2, any1 => ..., any2, any1, any4, any3, any2, any1Duplicate the top two words on the stack and insert the copies three words down in the stack.
swap = 95 |
Stack: ..., any2, any1 => ..., any2, any1Swap the top two elements on the stack.