added missing NIP instruction

This commit is contained in:
sejo 2022-01-13 17:39:35 -06:00
parent 8c972f8398
commit a366da3859
1 changed files with 1 additions and 0 deletions

View File

@ -754,6 +754,7 @@ these are all the uxntal instructions that we discussed today!
* POP: Remove top element from the stack ( a -- )
* DUP: Duplicate; push a copy of the top element ( a -- a a )
* SWP: Swap; change the order of the top two elements of the stack ( a b -- b a )
* NIP: Remove the top second element of the stack ( a b -- b )
* OVR: Over; push a copy of the second top element ( a b -- a b a )
* ROT: Rotate; reorder the top three elements of the stack so that the third one is now at the top ( a b c -- b c a )