fpc/rtl/i8086/portsh.inc
nickysn 8e6205aca6 * changed the visibility of the writeport and readport methods in the ports unit
objects to private (since they should be accessed only through the default
  indexed property)

git-svn-id: trunk@39421 -
2018-07-09 14:55:20 +00:00

48 lines
1.4 KiB
PHP

{
This file is part of the Free Pascal run time library.
Copyright (c) 1999-2000 by the Free Pascal development team.
These files adds support for TP styled port accesses
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.
**********************************************************************}
type
tport = object
private
procedure writeport(p : word;data : byte);inline;
function readport(p : word) : byte;inline;
public
property pp[w : word] : byte read readport write writeport;default;
end;
tportw = object
private
procedure writeport(p : word;data : word);inline;
function readport(p : word) : word;inline;
public
property pp[w : word] : word read readport write writeport;default;
end;
tportl = object
private
procedure writeport(p : word;data : longint);
function readport(p : word) : longint;
public
property pp[w : word] : longint read readport write writeport;default;
end;
var
{ we don't need to initialize port, because neither member
variables nor virtual methods are accessed }
port,
portb : tport;
portw : tportw;
portl : tportl;