summaryrefslogtreecommitdiff
path: root/dis.c
diff options
context:
space:
mode:
Diffstat (limited to 'dis.c')
-rw-r--r--dis.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/dis.c b/dis.c
index 0fb23f8..c4492df 100644
--- a/dis.c
+++ b/dis.c
@@ -44,6 +44,10 @@ void disasm_chunk(Chunk *ch) {
SIMPLE_INSTR(OP_SUB, "sub")
SIMPLE_INSTR(OP_MUL, "mul")
SIMPLE_INSTR(OP_DIV, "div")
+ SIMPLE_INSTR(OP_NIL, "nil")
+ SIMPLE_INSTR(OP_TRUE, "true")
+ SIMPLE_INSTR(OP_FALSE, "false")
+
}
}
#undef SIMPLE_INSTR