home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / CEXPRESS.ZIP / KEYBOARD.ASM / MCURSON.ASM < prev    next >
Assembly Source File  |  1989-05-03  |  355b  |  18 lines

  1. ;void  mouse_cursor_on();
  2.  
  3.     EXTRN  _memory_model:byte
  4.  
  5. _TEXT    SEGMENT BYTE PUBLIC 'CODE'
  6.     ASSUME CS:_TEXT
  7.     PUBLIC _mouse_cursor_on
  8. _mouse_cursor_on proc near
  9.     mov  ax,1        ;function number
  10.     int  33h        ;mouse interrupt
  11.     cmp  _memory_model,0    ;quit
  12.     jle  quit        ;
  13.     db   0CBh        ;RET far
  14. quit:    ret            ;RET near
  15. _mouse_cursor_on ENDP
  16. _TEXT    ENDS
  17.     END
  18.