home *** CD-ROM | disk | FTP | other *** search
- program tgetcxy;
-
- uses
- dos,
- vcrtnew;
-
- procedure testit;
-
- var
- r : registers;
- z : INTEGER;
- begin
-
- clrscr;
-
- For Z := 1 to 15 Do
- BEGIN
- GotoXY( Z, Z );
-
- R.AH :=$03;
- R.BH :=0;
- R.ES :=$0;
- R.DS :=$0;
-
- Intr( $10, R );
-
- Write( R.DL,',',R.DH,' (',Z,',',Z,')' );
- END;
-
-
- end;
-
-
-
- begin
-
- testit;
-
- end.