home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
library
/
dos
/
diverses
/
mike40c
/
gotoxy.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1986-10-23
|
262 b
|
16 lines
#include <dos.h>
gotoxy(x, y) /* position cursor at x,y 0,0 being upper left */
int x, y;
{
union REGS REG;
REG.h.ah = 02;
REG.h.bh = 0; /* Get current page */
REG.h.dh = x;
REG.h.dl = y;
int86(0x10, ®, ®);
}