SetCursorPos
Function number: 25
Sets the current graphics cursor position in text format for use with the 'PrintString' function.
Register entry values
AX = EE19
BX = Column
CX = Row
Register exit values
None
Example
MOV AX,0EE19H ;Set graphics cursor position function
MOV BX,10 ;Column
MOV CX,15 ;Row
INT 10H ;Call GRAFIX
Comments
None