+ some rtl include files added

git-svn-id: branches/z80@44904 -
This commit is contained in:
nickysn 2020-04-21 02:11:52 +00:00
parent aeafe0db40
commit 861ae0b139
4 changed files with 88 additions and 0 deletions

3
.gitattributes vendored
View File

@ -12189,6 +12189,9 @@ rtl/z80/z80.inc svneol=native#text/plain
rtl/zxspectrum/Makefile svneol=native#text/plain
rtl/zxspectrum/Makefile.fpc svneol=native#text/plain
rtl/zxspectrum/prt0.asm svneol=native#text/plain
rtl/zxspectrum/rtldefs.inc svneol=native#text/plain
rtl/zxspectrum/sysos.inc svneol=native#text/plain
rtl/zxspectrum/sysosh.inc svneol=native#text/plain
rtl/zxspectrum/system.pp svneol=native#text/plain
tests/MPWMake -text
tests/Makefile svneol=native#text/plain

View File

@ -0,0 +1,24 @@
{
This file is part of the Free Pascal run time library.
Copyright (c) 2012 by Free Pascal development team
This file contains platform-specific defines that are used in
multiple RTL units.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{ the single byte OS APIs always use UTF-8 }
{ define FPCRTL_FILESYSTEM_UTF8}
{ The OS supports a single byte file system operations API that we use }
{$define FPCRTL_FILESYSTEM_SINGLE_BYTE_API}
{ The OS supports a two byte file system operations API that we use }
{ define FPCRTL_FILESYSTEM_TWO_BYTE_API}

34
rtl/zxspectrum/sysos.inc Normal file
View File

@ -0,0 +1,34 @@
{
This file is part of the Free Pascal run time library.
Copyright (c) 2013 by Free Pascal development team
This file implements all the base types and limits required
for a minimal POSIX compliant subset required to port the compiler
to a new OS.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{procedure GetInOutRes(def: Word);
var
regs : Registers;
begin
regs.AX:=$5900;
regs.BX:=$0;
MsDos(regs);
InOutRes:=regs.AX;
case InOutRes of
19 : InOutRes:=150;
21 : InOutRes:=152;
32 : InOutRes:=5;
end;
if InOutRes=0 then
InOutRes:=Def;
end;}

27
rtl/zxspectrum/sysosh.inc Normal file
View File

@ -0,0 +1,27 @@
{
This file is part of the Free Pascal run time library.
Copyright (c) 2013 by Free Pascal development team
This file implements all the base types and limits required
for a minimal POSIX compliant subset required to port the compiler
to a new OS.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{Platform specific information}
type
THandle = Word;
TThreadID = THandle;
TOSTimestamp = LongInt;
PRTLCriticalSection = ^TRTLCriticalSection;
TRTLCriticalSection = record
Locked: boolean
end;