When pressed, the symbol appears, but the motion disappears again. How do I make the character remained in the coordinates? There is a code:
mov ax,3
int 10h
mov bh,0
xor ax,ax
int 33h
xchg ax,cx
jcxz exit
mov ax,0Ch
mov cx,10100b
push cs
pop es
mov dx,offset mouse
int 33h
mov ax,1
int 33h
mouse proc far
mov ax, cx
shr ax, 3
shr dx, 3
mov cx, ax
mov ax, 0B800h
mov es, ax
mov ax, 80
shl ax, 1
mul dx
shl cx, 1
add ax, cx
mov di, ax
mov byte ptr es:[di], '1'
retf
mouse endp