From 46356365270b71be94097b3c408d5f35a9ebd6ed Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Tue, 26 Oct 2021 08:40:59 +0200 Subject: Add initial function call procedure --- src/bytecode/debug.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/bytecode/debug.h') 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[] = { [OP_DISPLAY] = "OP_DISPLAY", [OP_PRINT] = "OP_PRINT", [OP_NEWLINE] = "OP_NEWLINE", - // Return. + // Procedures. + [OP_CALL] = "OP_CALL", [OP_RETURN] = "OP_RETURN", }; -- cgit v1.2.1