write runtime object bootstrap

This commit is contained in:
2025-08-03 01:48:41 +01:00
parent a7d7ded803
commit 417d66faf3
15 changed files with 69 additions and 91 deletions

View File

@@ -34,10 +34,11 @@ typedef struct Stack {
} Stack;
struct argon_function_struct {
darray_armem bytecode;
uint8_t* bytecode;
size_t bytecode_length;
Stack stack;
size_t number_of_parameters;
char **parameters;
struct string_struct *parameters;
};