From 4dee2671648e7bea94bd672f069181630aca8960 Mon Sep 17 00:00:00 2001 From: Jeremiah Orians Date: Sat, 1 Oct 2016 21:43:08 -0400 Subject: [PATCH] Force IDE to use exact same Memory size as VM, to make finding invalid memory accesses faster --- wrapper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrapper.c b/wrapper.c index 819441d..3e0e212 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 << 30); + vm = create_vm(1 << 20); Globalvm = vm; }