part of multimodule execution impl in interpreter: separation of execution parts

This commit is contained in:
ProgramSnail 2024-11-29 23:43:35 +03:00
parent 59f3dfb43e
commit 009fdd6bfe
5 changed files with 78 additions and 38 deletions

View file

@ -2,4 +2,12 @@
#include "parser.h"
void run(uint mod_id, int argc, char **argv);
void run_init(size_t *stack);
void run_init_mod_rec(uint mod_id);
void run_prepare_exec(int argc, char **argv);
void run_mod(uint mod_id, int argc, char **argv);
void run_cleanup();