From 805f1d4effaad6b0e1c171450820c003fe28b2a7 Mon Sep 17 00:00:00 2001 From: pca006132 Date: Tue, 1 Sep 2020 10:38:20 +0800 Subject: [PATCH] runtime: increased heap size --- src/runtime/link.x | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/link.x b/src/runtime/link.x index e93a5602..0a6f853f 100644 --- a/src/runtime/link.x +++ b/src/runtime/link.x @@ -49,10 +49,10 @@ SECTIONS .heap (NOLOAD) : ALIGN(8) { __heap0_start = .; - . += 0x800000; + . += 0x8000000; __heap0_end = .; __heap1_start = .; - . += 0x800000; + . += 0x8000000; __heap1_end = .; } > SDRAM