8086 assembly right mouse click interrupts
I am working on a project in 8086 assembly on windows machine and I need to know which mouse button has been clicked. What are the interrupts for this? or how do I go about finding this out? Thanks matja If you're making a DOS program that runs under windows, you can use software interrupt 0x33, function 3, which returns the button status in the BL register : mov ax,0x3 int 0x33 test bl,1 jnz left_button_pressed test bl,2 jnz right_button_pressed More info here http://www.ctyme.com/intr/rb-5959.htm If you're making a native Windows application, you can test for button presses by checking for