From addd54dc31603dc204773d3108dba4e000cd7657 Mon Sep 17 00:00:00 2001 From: A404M Date: Tue, 8 Oct 2024 04:16:27 +0330 Subject: added fasm support added compiler options tried to compile to fasm first --- src/vm/runner/runner.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/vm/runner/runner.h') diff --git a/src/vm/runner/runner.h b/src/vm/runner/runner.h index 80ef571..71fde6d 100644 --- a/src/vm/runner/runner.h +++ b/src/vm/runner/runner.h @@ -14,7 +14,8 @@ extern const BuiltinFunction BUILTIN_FUNCTIONS[]; extern const char *BUILTIN_FUNCTION_NAMES[]; extern const size_t BUILTIN_FUNCTIONS_SIZE; -extern bool runner(SourceCode *code); +extern bool runner(SourceCode *souceCode); +extern bool runnerWithPrint(SourceCode *souceCode); extern bool _runner(Instructions instructions); extern bool runInstruction(Instruction instruction, void ***restrict stack, -- cgit v1.2.3