Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question
I'm voting to close this question as "not a real question" because it does not explain the problem. Deducing the real problem from the given uncommented and unstructured assembly code isn't something particularly appealing. – Alexey Frunze Mar 3 at 10:48

closed as not a real question by Alexey Frunze, Bohemian, Bartek Banachewicz, R. Martinho Fernandes, nrz Mar 3 at 11:03

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.