home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / bios / biosprin.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-26  |  270 b   |  15 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <bios.h>
  3. #include <dpmi.h>
  4.  
  5. int
  6. biosprint(int cmd, int byte, int port)
  7. {
  8.   __dpmi_regs r;
  9.   r.h.ah = cmd;
  10.   r.h.al = byte;
  11.   r.x.dx = port;
  12.   __dpmi_int(0x17, &r);
  13.   return r.h.ah;
  14. }
  15.