aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode/debug.h
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-10-24 14:14:31 +0200
committerBad Diode <bd@badd10de.dev>2021-10-24 14:14:31 +0200
commit76821f9d76282419823f3c85b042ad72863d4077 (patch)
treef2edfd78fd706b85738f533ae895f62c94676056 /src/bytecode/debug.h
parentb97e4450a7ce377a1d50cac5342b7b1dd1a19add (diff)
downloadbdl-76821f9d76282419823f3c85b042ad72863d4077.tar.gz
bdl-76821f9d76282419823f3c85b042ad72863d4077.zip
Add set! keyword and OP
Diffstat (limited to 'src/bytecode/debug.h')
-rwxr-xr-xsrc/bytecode/debug.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bytecode/debug.h b/src/bytecode/debug.h
index dc0585b..889ae03 100755
--- a/src/bytecode/debug.h
+++ b/src/bytecode/debug.h
@@ -10,7 +10,8 @@ static const char* ops_str[] = {
10 // Load/store ops. 10 // Load/store ops.
11 [OP_CONSTANT] = "OP_CONSTANT", 11 [OP_CONSTANT] = "OP_CONSTANT",
12 [OP_DEF] = "OP_DEF", 12 [OP_DEF] = "OP_DEF",
13 [OP_GET_GLOBAL] = "OP_GET_GLOBAL", 13 [OP_SET] = "OP_SET",
14 [OP_GET] = "OP_GET",
14 // Arithmetic ops. 15 // Arithmetic ops.
15 [OP_SUM] = "OP_SUM", 16 [OP_SUM] = "OP_SUM",
16 [OP_SUB] = "OP_SUB", 17 [OP_SUB] = "OP_SUB",