home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / bbs / mikes30c.arc / CLS.C < prev    next >
Text File  |  1985-09-25  |  201b  |  15 lines

  1. cls()         /* Clear the screen  */
  2. {
  3.  
  4.     union REGS REG;
  5.  
  6.     REG.x.ax = 0x0600;
  7.     REG.h.bh = 0x07;
  8.     REG.x.cx = 0X0000;
  9.     REG.x.dx = 0x184f;
  10.     int86(0x10, ®, ®);
  11.  
  12. }
  13.  
  14.  
  15.