home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_01_03 / 1n03069b < prev    next >
Text File  |  1990-07-06  |  117b  |  12 lines

  1.  
  2.  
  3.     union REGS reg;
  4.  
  5.     reg.h.ah = 2;
  6.     reg.h.bh = 0;
  7.     reg.h.dh = 4;
  8.     reg.h.dl = 9;
  9.  
  10.     int86(0x10,®,®);
  11.  
  12.