aboutsummaryrefslogtreecommitdiff
path: root/src/bytecode.c
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-01-29 19:04:00 +0100
committerdec05eba <dec05eba@protonmail.com>2020-01-29 19:04:00 +0100
commit2ce9ebc39011831f9bd73511f696f1dd567ac0b9 (patch)
tree92f937d43ea7b2711879e0c00d23a1e3eade648d /src/bytecode.c
parent1ab8f5d8bd9a730f8d6b11335343835b19fc4c3e (diff)
Allow passing variables to commands as args
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index b8342b4..6f6e6aa 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -19,7 +19,6 @@ const char* tsl_opcode_to_string(TslOpcode opcode) {
case TSL_OPCODE_SUB: return "sub";
case TSL_OPCODE_MUL: return "mul";
case TSL_OPCODE_DIV: return "div";
- case TSL_OPCODE_LOADCA: return "loadca";
case TSL_OPCODE_CALLC: return "callc";
}
return "";