home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / C / JAZLIB / JZSCRLDN.C < prev    next >
Text File  |  1993-12-01  |  235b  |  13 lines

  1. #include <jaz.h>
  2. jzscrldn ( fuleft , flrite , fnum , fattr )
  3. int fuleft,flrite,fnum,fattr;
  4. {
  5.  
  6.   TREG wreg;
  7.   wreg.x.ax = 0x700 | fnum;
  8.   wreg.x.cx = fuleft;
  9.   wreg.x.dx = flrite;
  10.   wreg.h.bh = fattr;
  11.   intr(0x10,&wreg);
  12. }
  13.