mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 05:28:07 +02:00
* reduced the stack margin for stack checking to 64 bytes on the Z80
git-svn-id: trunk@45168 -
This commit is contained in:
parent
594138141a
commit
5b24267529
@ -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 }
|
||||
|
Loading…
Reference in New Issue
Block a user