diff options
Diffstat (limited to 'dis.c')
-rw-r--r-- | dis.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |