guys?
im creating my own program..first im using tasm..
my problem is i have the code for cursor..
;set cursor location(dh,dl)
mov dl, 16 ; column.
mov dh, 16 ; row.
mov ah, 02h
int 10h
;symbol of cursor
mov al, 'x'
mov ah, 0eh
int 10h
my problem is how to use move it with the mouse..
my code was just a location..
can some1 help me with my code..
thanks..
Jingo Rodriguez