1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
{
This file is part of the Free Pascal run time library.
Copyright (c) 2004 Karoly Balogh for Genesi S.a.r.l. <www.genesi.lu>
dos.library interface unit for MorphOS/PowerPC
MorphOS port was done on a free Pegasos II/G4 machine
provided by Genesi S.a.r.l. <www.genesi.lu>
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.
**********************************************************************}
{$INLINE ON}
unit doslib;
interface
uses Exec, Timer;
var
DosBase: Pointer;
{$include doslibd.inc}
{$include doslibf.inc}
{ * dos global definitions (V50)
*********************************************************************
* }
function BADDR(x: LongInt): Pointer; Inline;
function MKBADDR(x: Pointer): LongInt; Inline;
{ * dos stdio definitions
*********************************************************************
* }
function ReadChar: LongInt; Inline;
function WriteChar(ch: Char): LongInt; Inline;
function UnReadChar(ch: Char): LongInt; Inline;
function ReadChars(buf: Pointer; num: LongInt): LongInt; Inline;
function dosReadLn(buf: PChar; num: LongInt): PChar; Inline;
function WriteStr(str: PChar): LongInt; Inline;
procedure VWritef(format: PChar; argv: Pointer); Inline;
{ * calls with tags workarounds (should be removed later)
*********************************************************************
* }
function CreateNewProcTags(tags: array of dword): PProcess; Inline;
implementation
{ * dos stdio definitions
*********************************************************************
* }
function ReadChar: LongInt; Inline;
begin
ReadChar:=FGetC(dosInput);
end;
function WriteChar(ch: Char): LongInt; Inline;
begin
WriteChar:=FPutC(dosOutput,Byte(ch));
end;
function UnReadChar(ch: Char): LongInt; Inline;
begin
UnReadChar:=UnGetC(dosInput,Byte(ch));
end;
function ReadChars(buf: Pointer; num: LongInt): LongInt; Inline;
begin
ReadChars:=FRead(dosInput,buf,1,num);
end;
function dosReadLn(buf: PChar; num: LongInt): PChar; Inline;
begin
dosReadLn:=FGets(dosInput,buf,num);
end;
function WriteStr(str: PChar): LongInt; Inline;
begin
WriteStr:=FPuts(dosOutput,str);
end;
procedure VWritef(format: PChar; argv: Pointer); Inline;
begin
VFWritef(dosOutput,format,argv);
end;
{ * dos global definitions (V50)
*********************************************************************
* }
function BADDR(x: LongInt): Pointer; Inline;
begin
BADDR:=Pointer(x Shl 2);
end;
function MKBADDR(x: Pointer): LongInt; Inline;
begin
MKBADDR:=LongInt(x) Shr 2;
end;
{ * calls with tags workarounds (should be removed later)
*********************************************************************
* }
function CreateNewProcTags(tags: array of DWord): PProcess; Inline;
begin
CreateNewProcTags:=CreateNewProc(@tags);
end;
begin
DosBase:=MOS_DOSBase;
end.
|