summaryrefslogtreecommitdiff
path: root/dis.c
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-06-26 22:45:16 +0100
committerubq323 <ubq323@ubq323.website>2024-06-26 22:45:16 +0100
commita559125a2d7af771784614b7a2092cc7fb707345 (patch)
tree4e4f31197d28a41b5c62fdd19086295cf0acad84 /dis.c
parent2e62b41072738142dea9f0b5dd5d2d22455c7616 (diff)
array literals
Diffstat (limited to 'dis.c')
-rw-r--r--dis.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/dis.c b/dis.c
index 9220b75..2939384 100644
--- a/dis.c
+++ b/dis.c
@@ -101,6 +101,8 @@ static size_t disasm_instr_h(Chunk *ch, size_t ip, int depth) {
SIMPLE_INSTR(OP_CMP, "cmp")
SIMPLE_INSTR(OP_EQU, "equ")
SIMPLE_INSTR(OP_HALT, "halt")
+ SIMPLE_INSTR(OP_ARRNEW, "arrnew")
+ SIMPLE_INSTR(OP_ARRAPPEND, "arrappend")
#undef SIMPLE_INSTR
default: