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 >
Wrap
Assembly Source File
|
1989-05-03
|
355b
|
18 lines
;void mouse_cursor_on();
EXTRN _memory_model:byte
_TEXT SEGMENT BYTE PUBLIC 'CODE'
ASSUME CS:_TEXT
PUBLIC _mouse_cursor_on
_mouse_cursor_on proc near
mov ax,1 ;function number
int 33h ;mouse interrupt
cmp _memory_model,0 ;quit
jle quit ;
db 0CBh ;RET far
quit: ret ;RET near
_mouse_cursor_on ENDP
_TEXT ENDS
END