summaryrefslogtreecommitdiff
path: root/uscript/xbytecode.h
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-04-07 10:46:07 -0400
committeriamcheeseman <[email protected]>2026-04-07 10:46:07 -0400
commit6d30c64216cd4d0b1b2a20a167d85c7fc6534378 (patch)
tree67d0600f9be759c2c76b3e017b286354b57ab00a /uscript/xbytecode.h
parentd39f7a08461b64c7378f007761d51208c226f4a4 (diff)
microscript: add arrays
Diffstat (limited to 'uscript/xbytecode.h')
-rw-r--r--uscript/xbytecode.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/uscript/xbytecode.h b/uscript/xbytecode.h
index 4372ea5..16ad7a3 100644
--- a/uscript/xbytecode.h
+++ b/uscript/xbytecode.h
@@ -4,10 +4,13 @@ BC(SMALL_INT)
BC(FALSE)
BC(TRUE)
BC(ZILCH)
+BC(ARR)
BC(GET_LOCAL)
BC(SET_LOCAL)
BC(GET_UPVAL)
BC(SET_UPVAL)
+BC(GET_INDEX)
+BC(SET_INDEX)
BC(POP)
BC(POP_UPVAL)
BC(ADD)