home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FreeWare Collection 2
/
FreeSoftwareCollection2pd199x-jp.img
/
ms_dos
/
fmgraph
/
g_gcrpos.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-06-14
|
266 b
|
17 lines
#include <stdio.h>
#include <dos.h>
extern unsigned char gds_fshift;
void g_gcurpos(unsigned x,unsigned y)
{
union REGS reg;
struct SREGS seg;
segread(&seg);
reg.h.ah=gds_fshift+0x13;
reg.x.dx=x;
reg.x.cx=y;
int86x(0x92,®,®,&seg);
}