home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / diverses / mike40c / gotoxy.c < prev    next >
Encoding:
C/C++ Source or Header  |  1986-10-23  |  262 b   |  16 lines

  1. #include <dos.h>
  2.  
  3. gotoxy(x, y)   /* position cursor at x,y  0,0 being upper left */
  4. int x, y;
  5. {
  6.     union REGS REG;
  7.  
  8.     REG.h.ah = 02;
  9.     REG.h.bh = 0; /* Get current page */
  10.     REG.h.dh = x;
  11.     REG.h.dl = y;
  12.     int86(0x10, ®, ®);
  13. }
  14.  
  15.  
  16.