home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / c / c_tutor / c_1 / locate < prev    next >
Encoding:
Text File  |  1992-11-14  |  194 b   |  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.