Delphi Developer
I have a small question about mouse handling in mode $101 (640X480X256)
Somehow I can't move the mouse to the lower part of the screen - the largest Y-coordinate the mosue returns are 199...
What is the problem here ?
Telemachos
Area(0,0,640*8,480*8); Sense(640,480);
procedure Area(x1,y1,x2,y2 : Integer); assembler; asm mov ax,7;xor ch,ch;xor dh,dh;mov cx,x1;mov dx,x2;int 33h mov ax,8;xor ch,ch;xor dh,dh;mov cx,y1;mov dx,y2;int 33h end;
procedure Sense(x,y:Integer); assembler; asm mov ax,1ah; mov bx,x; mov cx,y; xor dx,dx; int 33h end;
hope this helps.....
Esky aaron_rodg...@hotmail.com
1. Taking screen shots in VESA $101
2. Mouse cursor in VESA mode
3. Using the mouse in Graphic mode
4. Mouse in 256 color mode PROBLEM
5. Graphic Mode & mouse
6. Req: graphic mouse handler for text modes
7. Mouse in protected mode
8. Mouse in SVGA-Mode
9. Mouse in SVGA Mode
10. Mouse In Super Vga Mode