From 861ae0b1397278a18a10f2be5160b160e8e72c39 Mon Sep 17 00:00:00 2001 From: nickysn Date: Tue, 21 Apr 2020 02:11:52 +0000 Subject: [PATCH] + some rtl include files added git-svn-id: branches/z80@44904 - --- .gitattributes | 3 +++ rtl/zxspectrum/rtldefs.inc | 24 ++++++++++++++++++++++++ rtl/zxspectrum/sysos.inc | 34 ++++++++++++++++++++++++++++++++++ rtl/zxspectrum/sysosh.inc | 27 +++++++++++++++++++++++++++ 4 files changed, 88 insertions(+) create mode 100644 rtl/zxspectrum/rtldefs.inc create mode 100644 rtl/zxspectrum/sysos.inc create mode 100644 rtl/zxspectrum/sysosh.inc diff --git a/.gitattributes b/.gitattributes index abaf7898a5..e06c1c1d0e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -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 diff --git a/rtl/zxspectrum/rtldefs.inc b/rtl/zxspectrum/rtldefs.inc new file mode 100644 index 0000000000..3376428f5e --- /dev/null +++ b/rtl/zxspectrum/rtldefs.inc @@ -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} diff --git a/rtl/zxspectrum/sysos.inc b/rtl/zxspectrum/sysos.inc new file mode 100644 index 0000000000..c9975bebcc --- /dev/null +++ b/rtl/zxspectrum/sysos.inc @@ -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;} + diff --git a/rtl/zxspectrum/sysosh.inc b/rtl/zxspectrum/sysosh.inc new file mode 100644 index 0000000000..63b56082e2 --- /dev/null +++ b/rtl/zxspectrum/sysosh.inc @@ -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;