Hello, to all of you my dear professors wanted to write a program to place the mouse cursor at any point in trying to print the output .
I then wrote the code but did not get the answer I'm grateful that I can help your loved ones get
Thanks
.MODEL SMALL
.STACK
.DATA
row DW ?
column DW ?
.CODE
MAIN PROC
MOV AX,0
INT 33H
MOV AX,1
INT 33H
MOV AX,3
INT 33H
MOV row,CX
MOV column,DX
DIV row,8
DIV column,8
MOV DX,OFFSET row
MOV AX,09
INT 21H
MOV CX,OFFSET column
MOV AX,09
INT 21H
MOV AX,4C00H
INT 21H
MAIN ENDP
END MAIN