diff --git a/vm.c b/vm.c index dac59c4..d35d9f6 100644 --- a/vm.c +++ b/vm.c @@ -44,7 +44,7 @@ int main(int argc, char **argv) /* Perform all the essential stages in order */ struct lilith* vm; - vm = create_vm(1 << 20); + vm = create_vm(1 << 22); load_program(vm, argv); execute_vm(vm); destroy_vm(vm); diff --git a/wrapper.c b/wrapper.c index 3e0e212..810bc80 100644 --- a/wrapper.c +++ b/wrapper.c @@ -37,7 +37,7 @@ void execute_vm(struct lilith* vm) void initialize_lilith() { struct lilith* vm; - vm = create_vm(1 << 20); + vm = create_vm(1 << 22); Globalvm = vm; }