From 046efa4f23a73dae8b1950990f08defa40cd04ad Mon Sep 17 00:00:00 2001 From: Daniel Kang Date: Wed, 9 Jan 2019 14:10:47 -0800 Subject: [PATCH] global size changed to 1024 --- vm/vm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/vm.go b/vm/vm.go index 689cf15..2bef080 100644 --- a/vm/vm.go +++ b/vm/vm.go @@ -10,7 +10,7 @@ import ( const ( StackSize = 2048 - GlobalsSize = 65536 + GlobalsSize = 1024 MaxFrames = 1024 )