aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode/debug.h
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-10-26 08:40:59 +0200
committerBad Diode <bd@badd10de.dev>2021-10-26 08:40:59 +0200
commit46356365270b71be94097b3c408d5f35a9ebd6ed (patch)
tree59ae01f6108a94e818670de1bda37ae12a5fa2fe /src/bytecode/debug.h
parentd54e595644fcaf6756d53d368213ad3129c49327 (diff)
downloadbdl-46356365270b71be94097b3c408d5f35a9ebd6ed.tar.gz
bdl-46356365270b71be94097b3c408d5f35a9ebd6ed.zip
Add initial function call procedure
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 534ff80..1e0d4d6 100755
--- a/src/bytecode/debug.h
+++ b/src/bytecode/debug.h
@@ -36,7 +36,8 @@ static const char* ops_str[] = {
36 [OP_DISPLAY] = "OP_DISPLAY", 36 [OP_DISPLAY] = "OP_DISPLAY",
37 [OP_PRINT] = "OP_PRINT", 37 [OP_PRINT] = "OP_PRINT",
38 [OP_NEWLINE] = "OP_NEWLINE", 38 [OP_NEWLINE] = "OP_NEWLINE",
39 // Return. 39 // Procedures.
40 [OP_CALL] = "OP_CALL",
40 [OP_RETURN] = "OP_RETURN", 41 [OP_RETURN] = "OP_RETURN",
41}; 42};
42 43