I'm using 8086 assembly on DOSBox which is on Windows.
I want to print a char in graphics mode, and I know it goes like this:
mov ah, 0eh ;0eh = 14
mov al, 'x'
xor bx, bx ;Page number zero
mov bl, 0ch ;Color is red
int 10h
The code above prints the letter 'x' in the left side of the top of the screen.
I don't know how to print 'x' char in specific location in my screen. What should I do in order to print 'x' in specific location?