home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR2 / DIGIPROG.ZIP / FCT6_FF.C < prev    next >
C/C++ Source or Header  |  1993-04-01  |  510b  |  29 lines

  1.  
  2. #include <dos.h>
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7.  
  8. struct REGPACK  sregs;
  9.  
  10. int    y,x,numbytes,dx;
  11. char    far *cptr;
  12.  
  13. union REGS regs;
  14.  
  15.     printf("\nEnter DX : ");
  16.     scanf("%d",&dx); while(kbhit()) getch();
  17.  
  18.     sregs.r_ax = 0x06ff;
  19.     sregs.r_dx = dx;
  20.     intr(0x14,&sregs);
  21.     printf("\nVersion : %04X  ",sregs.r_ax);
  22.     printf("\nChannels : %04X  ",sregs.r_cx);
  23.     cptr = MK_FP(sregs.r_es,sregs.r_bx);
  24.     printf("\nName @ %04X:%04X  : ",sregs.r_es,sregs.r_bx);
  25.     for(x=0;x<8;x++)
  26.         printf("%c",*cptr++);
  27.  
  28.  
  29. }