From 1fa2f125f3304ebad33300f5b51d20f2c467021b Mon Sep 17 00:00:00 2001 From: Jeremiah Orians Date: Sat, 29 Oct 2016 23:15:48 -0400 Subject: [PATCH] Increase amount of available memory to 4MB --- vm.c | 2 +- wrapper.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; }