home *** CD-ROM | disk | FTP | other *** search
- /*--------------------------------------*/
- /* */
- /* SCR_EOS() */
- /* */
- /* Clears the part of the screen immed- */
- /* iately below the cursor position. */
- /* */
- /*--------------------------------------*/
- void scr_eos()
- {
- int a[6],b[6],x,y;
- scr_loc(&x,&y);
- intinit(a,6,0);
- a[0]=1792;
- a[1]=2047;
- a[2]=256*(x+1);
- a[3]=6223;
- int86(16,a,b);
- a[0]=1536;
- int86(16,a,b);
- scr_curs(x,y);
- }