SDK preparation procedure reworked with init-for-IDE script

This commit is contained in:
2020-06-28 22:27:34 +03:00
parent 311e2d94a8
commit 0fa5d17830
13 changed files with 72 additions and 22 deletions

25
Lib/SysInit.pas Normal file
View File

@@ -0,0 +1,25 @@
(*
KolibriOS RTL System unit
*)
unit SysInit;
interface
procedure _InitExe(InitTable: PPackageInfo);
var
TLSIndex: Integer = -1;
TLSLast: Byte;
const
PtrToNil: Pointer = nil;
implementation
procedure _InitExe(InitTable: PPackageInfo);
begin
_StartExe(InitTable);
end;
end.