mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-14 10:48:55 +00:00
part of multimodule execution impl in interpreter: separation of execution parts
This commit is contained in:
parent
59f3dfb43e
commit
009fdd6bfe
5 changed files with 78 additions and 38 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue