home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
High Voltage Shareware
/
high1.zip
/
high1
/
DIR2
/
DIGIPROG.ZIP
/
FCT15.C
< prev
next >
Wrap
C/C++ Source or Header
|
1993-03-30
|
388b
|
27 lines
#include <dos.h>
#include <stdio.h>
main()
{
struct REGPACK sregs;
int y,x,numbytes,dx;
union REGS regs;
/* special char - <CR> */
printf("\nEnter DX : ");
scanf("%d",&dx); while(kbhit()) getch();
regs.x.ax = 0x1500;
regs.x.dx = dx;
printf("\nCall - AH : %02X",regs.h.ah);
int86(0x14,®s,®s);
printf("\nReturn - AX : %04X",regs.x.ax);
}