home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
APDL Public Domain 1
/
APDL_PD1A.iso
/
program
/
c
/
c_tutor
/
c_1
/
locate
< 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
Text File
|
1992-11-14
|
194 b
|
15 lines
#include <dos.h>
locate(row,col)
int row,col;
{
struct HREG REGS;
REGS.ah=02;
REGS.bh=00;
REGS.dh=row;
REGS.dl=col;
int86(0x10,®S,®S);
}