From fa22d76f13d4545d6f01d95a9842016ebbf83108 Mon Sep 17 00:00:00 2001 From: Anton Lydike Date: Sat, 24 Apr 2021 18:32:43 +0200 Subject: [PATCH] Added libstring and documentation for the general library --- riscemu/Config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riscemu/Config.py b/riscemu/Config.py index a362eaa..cc1d74f 100644 --- a/riscemu/Config.py +++ b/riscemu/Config.py @@ -10,7 +10,7 @@ from typing import Optional @dataclass(frozen=True, init=True) class RunConfig: - stack_size: int = 0 # 8 * 1024 * 1024 * 8 # for 8MB stack + stack_size: int = 8 * 1024 * 64 # for 8KB stack include_scall_symbols: bool = True add_accept_imm: bool = False # debugging