home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / communic / sercom / getstat.c < prev    next >
Encoding:
Text File  |  1986-09-04  |  384 b   |  18 lines

  1.  
  2. unsigned int getstat(portno)
  3. int portno;                     /* 1 for com2, 0 for com1       */
  4. {
  5. union REGS inr, outr;
  6. unsigned int status;
  7.  
  8.      inr.x.dx = portno;
  9.      inr.h.ah = 3;              /* Function number              */
  10.      int86(0x14, &inr, &outr);
  11.      status = outr.x.ax;
  12.      return(status);
  13. }
  14.  
  15.  
  16.  
  17. /* Figure 16.4: Get Port Status using ROM-BIOS */
  18.