Fix compilation of RTL classes unit for msdos OS target

git-svn-id: trunk@36629 -
This commit is contained in:
pierre 2017-07-03 16:21:15 +00:00
parent f5b8825662
commit 4882b802ae

View File

@ -16,7 +16,14 @@
{****************************************************************************}
const
{$ifdef CPU16}
{ Avoid too big local stack use for
MSDOS tiny memory model that uses less than 4096
bytes for total stack by default. }
ParseBufSize = 512;
{$else not CPU16}
ParseBufSize = 4096;
{$endif not CPU16}
LastSpecialToken = 5;
TokNames : array[0..LastSpecialToken] of string =