aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 3d878b3..432d74f 100644
--- a/src/main.c
+++ b/src/main.c
@@ -101,8 +101,12 @@ f64 vm_pop_float(vm_t *vm)
return f;
}
+#define ARR_SIZE(xs) (sizeof(xs) / sizeof(xs[0]))
+
int main(void)
{
- puts("Hello, world!");
+ byte stack_data[256];
+ vm_t vm = {0};
+ vm_load_stack(&vm, stack_data, ARR_SIZE(stack_data));
return 0;
}