diff options
Diffstat (limited to 'dis.c')
-rw-r--r-- | dis.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -44,6 +44,11 @@ static size_t disasm_instr_h(Chunk *ch, size_t ip, int depth) { printf("getlocal #%d\n",ix); break; } + case OP_SETLOCAL: { + uint8_t ix = ch->bc.d[ip++]; + printf("setlocal #%d\n",ix); + break; + } case OP_SETGLOBAL: { uint8_t ix = ch->bc.d[ip++]; printf("setglobal #%d\t; ",ix); |