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

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