* reduced the stack margin for stack checking to 64 bytes on the Z80

git-svn-id: trunk@45168 -
This commit is contained in:
nickysn 2020-04-29 01:22:22 +00:00
parent 594138141a
commit 5b24267529

View File

@ -44,7 +44,9 @@ type
{$endif FPC_HAS_FEATURE_TEXTIO}
const
{$ifdef CPUAVR}
{$if defined(CPUAVR)}
STACK_MARGIN = 64; { Stack size margin for stack checking }
{$elseif defined(CPUZ80)}
STACK_MARGIN = 64; { Stack size margin for stack checking }
{$else}
STACK_MARGIN = 16384; { Stack size margin for stack checking }