From d79f498cfdf72cf65a0ac04a732f6c31ada1e8ee Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Mon, 15 Dec 2014 08:55:06 -0500 Subject: [PATCH] increase default stack size for MrC --- bin/loader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/loader.h b/bin/loader.h index 7f61033..91eecaa 100644 --- a/bin/loader.h +++ b/bin/loader.h @@ -9,7 +9,7 @@ struct Settings { // command-line settings. uint32_t memorySize = 16 * 1024 * 1024; - uint32_t stackSize = 16 * 1024; + uint32_t stackSize = 32 * 1024; uint32_t machine = 68030; bool traceCPU = false;