From d95b4b819701047dc105d19ffb6b5bfef1a1a2a5 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Sun, 20 Nov 2016 13:56:47 +0000 Subject: Fix cgopts.s --- cgopts.s | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/cgopts.s b/cgopts.s index 1e02239..609dcd3 100644 --- a/cgopts.s +++ b/cgopts.s @@ -1,15 +1,12 @@ .data - .global ab_stack_size .global flags .global heap_size .global heap_size_multiple .global initial_heap_size - .align - -ab_stack_size: .word 0x0007d000 @ 500k +heap_size: .word 0x00200000 @ 2M +ab_stack_size: .word 0x00080000 @ 500k flags: .word 0x00000008 @ (from clm.c) -heap_size: .word 0x00a00000 @ 10M -heap_size_multiple: .word 0x00019000 @ 100 << 10 (100k, from clm.c) -initial_heap_size: .word 0x00001400 @ 20 << 8 (from clm.c) +heap_size_multiple: .word 0x00001400 @ 100 << 10 (100k, from clm.c) +initial_heap_size: .word 0x00019000 @ 20 << 8 (from clm.c) -- cgit v1.2.3