diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2024-10-08 04:16:27 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2024-10-08 04:17:08 +0330 |
commit | addd54dc31603dc204773d3108dba4e000cd7657 (patch) | |
tree | 621620c4ca5634680d7655e3474cf0b0bcec8e01 /src/vm/runner/runner.h | |
parent | bf84010e01bb11874689ce53ea4df853b2e41c2b (diff) |
added fasm support
added compiler options
tried to compile to fasm first
Diffstat (limited to 'src/vm/runner/runner.h')
-rw-r--r-- | src/vm/runner/runner.h | 3 |
1 files changed, 2 insertions, 1 deletions
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, |