fpc/tests/webtbs/tw0925.pp
2005-01-31 17:01:59 +00:00

15 lines
183 B
ObjectPascal

{ %CPU=i386 }
{$asmmode intel}
PROCEDURE Cursor(Form: word);assembler;stdcall;
asm
mov cx,word ptr[Form]
and cx,1F1Fh
mov ah,1
end;
begin
Cursor($11F);
end.