summaryrefslogtreecommitdiff
path: root/dis.c
diff options
context:
space:
mode:
Diffstat (limited to 'dis.c')
-rw-r--r--dis.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/dis.c b/dis.c
index 6827be0..193f410 100644
--- a/dis.c
+++ b/dis.c
@@ -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);