I'm using TASM in DOSBox, Windows. I'm learning about the int 33h
interrupt. In normal text mode, I am able to get the mouse position correctly.
But when I enter the graphics mode
; 800x600 - 256 colors
mov ax, 04F02h
mov bx, 0103h
int 10h
the mouse position is fixed at the center, which is at (320,100) since the mouse resolution is 640x200. When I enter the graphics mode, the mouse cursor position in the cx
and dx
registers doesn't change, even though the mouse is moving.
[EDIT]:
I think this is a problem on the VESA modes.
How do I get a mouse cursor in VESA mode?
This is a separated part from the "cutemouse-driver", but only for PS2 or USB(legacy enable) mouse without serial ports and without to draw the mousepointer: