home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / disk_20.zip / DB3-GKEY.ZIP / CURSOR.ASM < prev    next >
Assembly Source File  |  1986-07-01  |  917b  |  45 lines

  1. ;     Last revision: July 1, 1986 at 12:44
  2.  
  3. ;    by: H.M. Van Tassell, Watchung, NJ   
  4.  
  5. ;    To generate .OBJ file for use with Clipper
  6. ;       1. MASM CURSOR
  7. ;    Thats all except to include the file CURSOR.OBJ in your
  8. ;    PLINK86 link list of the .PRG file you are Clippering.
  9. ;
  10. ;    See the individual public routines for the callin systax   
  11.  
  12. prog    segment    byte public 'prog'
  13.     public    CursOn, CursOff
  14.     assume    cs:prog
  15. ;
  16. ;       Syntax: CALL CursOn to turn on cursor
  17. ;
  18. Curson proc far
  19.         int     11h
  20.         and     al,10h
  21.         mov     cx,8687h
  22.         jz      around
  23.         mov     cx,8b8ch
  24. around:
  25.         mov     ah,01h
  26.         int     10h
  27.         ret
  28. Curson endp
  29. ;        
  30. ;       Syntax: CALL CursOff to turn off cursor
  31. ;
  32. Cursoff proc far
  33.         mov     ah,01h
  34.         mov     cx,8f8fh
  35.         int     10h
  36.         ret
  37. Cursoff endp
  38. ;
  39. prog    ends
  40.     END 
  41.  
  42.  
  43.  
  44.  
  45.