From f662dfd1a8018fcd8dcc1d7977ed6f5548a487b1 Mon Sep 17 00:00:00 2001 From: ax-6 Date: Tue, 2 Jul 2024 23:28:23 +0800 Subject: [PATCH] Waiting for opcode development. --- aqvm/interpreter/bytecode/opcode/opcode.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aqvm/interpreter/bytecode/opcode/opcode.h b/aqvm/interpreter/bytecode/opcode/opcode.h index 7404384..c718061 100644 --- a/aqvm/interpreter/bytecode/opcode/opcode.h +++ b/aqvm/interpreter/bytecode/opcode/opcode.h @@ -39,7 +39,7 @@ enum AqvmInterpreterBytecodeOpcode_Type { }; // TODO(Bytecode): Change these functions after completing bytecode development. -int AqvmInterpreterBytecodeOpcode_NOP(); +/* int AqvmInterpreterBytecodeOpcode_NOP(); int AqvmInterpreterBytecodeOpcode_LOAD( struct AqvmMemory_Memory* ptr, struct AqvmMemory_Memory* operand); @@ -101,5 +101,6 @@ int AqvmInterpreterBytecodeOpcode_THROW(); // TODO(WIDE): Update this function if an extended instruction set is required. int AqvmInterpreterBytecodeOpcode_WIDE(); +*/ #endif