From 172a8a6c452e0408a593b89951a06028a6a11e30 Mon Sep 17 00:00:00 2001 From: Astro Date: Fri, 1 May 2020 01:24:54 +0200 Subject: [PATCH] experiments/link.x: assert at least 4 KB of stack --- experiments/link.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/experiments/link.x b/experiments/link.x index 4559fe9..6013d8a 100644 --- a/experiments/link.x +++ b/experiments/link.x @@ -65,4 +65,4 @@ SECTIONS } } -ASSERT(SIZEOF(.stack0) >= 0x8000, "less than 32 KB left for stack"); +ASSERT(SIZEOF(.stack0) >= 0x1000, "less than 4 KB left for stack");