From a366da3859a5d0739895e2463557fe504770594f Mon Sep 17 00:00:00 2001 From: sejo Date: Thu, 13 Jan 2022 17:39:35 -0600 Subject: [PATCH] added missing NIP instruction --- src/uxn_tutorial_day_3.gmo | 1 + 1 file changed, 1 insertion(+) diff --git a/src/uxn_tutorial_day_3.gmo b/src/uxn_tutorial_day_3.gmo index b0bf9d5..a3da3b9 100644 --- a/src/uxn_tutorial_day_3.gmo +++ b/src/uxn_tutorial_day_3.gmo @@ -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 )