+ initialize more stuff in the msdos system unit startup

git-svn-id: branches/i8086@24065 -
This commit is contained in:
nickysn 2013-03-30 03:02:14 +00:00
parent 324b4a8a0a
commit 8f71f3b5fd

View File

@ -161,7 +161,14 @@ end;
begin
StackLength := CheckInitialStkLen(InitialStkLen);
StackBottom := __stkbottom;
{ To be set if this is a GUI or console application }
IsConsole := TRUE;
{ To be set if this is a library and not a program }
IsLibrary := FALSE;
SysInitExceptions;
initunicodestringmanager;
{ Setup stdin, stdout and stderr }
SysInitStdIO;
{ Reset IO Error }
InOutRes:=0;
end.