home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / BURKS / SOFTWARE / LIBS / PMC101.ZIP / LIBSRC.ZIP / DRVCUR.C (.txt) < prev    next >
C/C++ Source or Header  |  1994-06-22  |  230b  |  17 lines

  1. #include "pmc.h"
  2.  
  3. long __pascal drivecurrent (void)
  4. {
  5.   REGSTRUCT rs;
  6.   int r;
  7.  
  8.   rs.w.FLAGS = rs.d.SSSP = 0;
  9.   rs.b.AH = 0x19;
  10.  
  11.   if ((r = xlt_simrmint (0x21, &rs, 0)) < 0)
  12.     return r;
  13.  
  14.   return rs.b.AL + 1;
  15. }
  16.  
  17.