This is working:
Code:
mov al,13
mov ah,0
int 10
mov ah,0c
mov al,5
mov cx,35
mov dx,112
int 10
But this is not working:
Code:
mov al,13
mov ah,0
int 10
mov ah,0c
mov al,5
mov cx,35
mov dx,112
mov al,6
mov cx,85
mov dx,112
int 10
I want to affix a pink point in pos(35,112).
And i want to affix another colorly point in pos(85,112).