tport = class
protected
procedure writeport(p : longint;data : byte);
function readport(p : longint) : byte;
public
property pp[w : longint] : byte read readport write writeport;default;
end;
tportw = class
protected
procedure writeport(p : longint;data : word);
function readport(p : longint) : word;
public
property pp[w : longint] : word read readport write writeport;default;
end;
tportl = class
Protected
procedure writeport(p : longint;data : longint);
function readport(p : longint) : longint;
Public
property pp[w : Longint] : longint read readport write writeport;default;
end;
|