From 0f295221cac3cfe507cafa6cbf012c51537ce1c8 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Wed, 1 Nov 2023 20:08:40 +0000 Subject: VM runtime now maintains a heap internally Now need to create some instructions which manage the heap --- vm/runtime.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'vm/runtime.h') diff --git a/vm/runtime.h b/vm/runtime.h index 45d467d..6c6042a 100644 --- a/vm/runtime.h +++ b/vm/runtime.h @@ -16,6 +16,7 @@ #include #include +#include #include typedef enum @@ -45,6 +46,7 @@ typedef struct byte *data; word ptr, max; } stack; + heap_t heap; struct Program { inst_t *instructions; @@ -56,8 +58,9 @@ err_t vm_execute(vm_t *); err_t vm_execute_all(vm_t *); void vm_load_stack(vm_t *, byte *, size_t); -void vm_load_program(vm_t *, inst_t *, size_t); void vm_load_registers(vm_t *, registers_t); +void vm_load_heap(vm_t *, heap_t); +void vm_load_program(vm_t *, inst_t *, size_t); void vm_stop(vm_t *); // Print routines -- cgit v1.2.3-13-gbd6f