blob: 4e6173bc23ebdc6e667c4074b6735447cb7e1ff6 (
plain) (
blame)
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
|
unit zlportio;
{$INCLUDE ../Platform.inc}
interface
uses GlueWindows;
procedure zlioportwrite( const Port,DataType,Data:dword );
procedure portwriteb( const Port:Dword;const Data:byte );
function GetTime : Real;
implementation
uses SysUtils;
procedure zlioportwrite( const Port,DataType,Data:dword );
begin
end;
procedure portwriteb( const Port:Dword;const Data:byte );
begin
end;
function GetTime : Real;
begin
Result := Now;
end;
end.
|