fpc/tests/webtbs/tu2002.pp
yury f96b571e38 * skip some tests for wince.
git-svn-id: trunk@4110 -
2006-07-06 19:08:23 +00:00

25 lines
424 B
ObjectPascal

{ %skiptarget=wince }
unit {vidutil}tu2002;
Interface
uses
video;
Procedure TextOut(X,Y : Word;Const S :
String);
Implementation
Procedure TextOut(X,Y : Word;Const S :
String);
Var
W,P,I,M : Word;
begin
P:=((X-1)+(Y-1)*ScreenWidth);
M:=Length(S);
If P+M>ScreenWidth*ScreenHeight then
M:=ScreenWidth*ScreenHeight-P;
For I:=1 to M do
VideoBuf^[P+I-1]:=Ord(S[i])+($07 shl 8);
end;
end.