home *** CD-ROM | disk | FTP | other *** search
/ Phoenix CD 2.0 / Phoenix_CD.cdr / 01e / lynn00.zip / LOCATE.C < prev    next >
Text File  |  1980-01-01  |  256b  |  15 lines

  1. #include <dos.h>
  2. locate(row,col)
  3. int row,col;
  4. {
  5.     struct HREG REGS;
  6.  
  7.     REGS.ah=02;
  8.     REGS.bh=00;
  9.     REGS.dh=row;
  10.     REGS.dl=col;
  11.     int86(0x10,®S,®S);
  12.  
  13.  
  14. }
  15.