The MASM Forum Archive 2004 to 2012

Miscellaneous Forums => 16 bit DOS Programming => Topic started by: zak100 on December 31, 2009, 05:30:56 PM

Title: Handling mouse
Post by: zak100 on December 31, 2009, 05:30:56 PM
Hi,
How can I handle mouse using BIOS routines? I found that normally int 33h is used which is dos interrupt. I am not able to find a BIOS based method for using mouse.

Zulfi.
Title: Re: Handling mouse
Post by: dedndave on December 31, 2009, 06:44:49 PM
well - i am not sure INT 33h is actually a DOS interrupt (DOS interrupts are traditionally 20h-2Fh)
in the early days of mice, it was added by way of a device driver in the CONFIG.SYS file, or in a TSR program
the problem you are going to have is supporting a variety of mouse interfaces
but, it is one of the many things you must support to get things going
you can get started with keyboard only and add mouse support later
but, you are going to bump into similar issues with graphics adapters, drives, wireless keyboards, printers, and so on
that's all part of writing an OS   :bg
Title: Re: Handling mouse
Post by: MichaelW on December 31, 2009, 07:39:30 PM
You could try the  CuteMouse (http://sourceforge.net/projects/cutemouse/) mouse driver, or use the source to help you develop your own.
Title: Re: Handling mouse
Post by: FORTRANS on December 31, 2009, 11:14:15 PM
Hi,

   Int 33H is the normal DOS divice driver interface.  Int 15H
function C2H is used by some BIOSes to drive a built in mouse
port.  "Undocumented DOS" shows these as subfunctions for
the IBM PS/1 and newer..


AH = C2H  Int 15 BIOS function

AL  Subfunction
0,  BH = 0  Disable mouse
0,  BH = 1  Enable mouse
1,          Reset mouse
2,          Set sample rate
3,          Set resolution
4,          Get device ID
5,          Initialize mouse
6,  BH = 0  Return status
6,  BH = 1  Set scaling factor to 1:1
6,  BH = 2  Set scaling factor to  2:1
7,          Set mouse handler address (device driver to update)


   "Undocumented DOS" can be considered an old copy of
Ralf Brown's Interrupt List in some ways, so look at it for
more recent information.

Regards,

Steve N.
Title: Re: Handling mouse
Post by: zak100 on January 01, 2010, 04:41:37 AM
Thanks.

Zulfi.
Title: Re: Handling mouse
Post by: MichaelW on January 01, 2010, 05:27:55 AM
AFAIK these functions are not supported by most systems. I think the only system I ever tested that did support these functions was a PS/1 (with an 8086 processor, to give you an idea of how far back this was). For my 10 year-old primary system the functions returned with the carry flag set and 86h in AH (not implemented).
Title: Re: Handling mouse
Post by: FORTRANS on January 01, 2010, 01:36:31 PM
Hi,

   Good to know.  They were not well liked by the author
by the way.  I guess I should set up RBIL again to see
what's been updated.  Reading further in Undoc seems to
imply they don't save all that much programming anyway.
Just gets rid of hardware specifics.

Regards,

Steve N.
Title: Re: Handling mouse
Post by: FORTRANS on January 01, 2010, 02:10:58 PM
Oh dear,

   Tried it out on my PIII.  Running Windows, it generates a
carry and 86 in AH (not implemented).  Reboot to a different
operating system, and in its DOS box it returns what appear
to be valid status bytes.  Drat, now I have to look at more
than one machine.

Cheers,

Steve
Title: Re: Handling mouse
Post by: dedndave on January 01, 2010, 04:01:52 PM
i think those are actually BIOS functions, but are disabled with newer OS's
Title: Re: Handling mouse
Post by: zak100 on January 14, 2010, 07:52:04 AM
Hi,
I have downloaded the cutemouse. I want to install it  using  my self made OS. Any ideas in this regard.

Zulfi.
Title: Re: Handling mouse
Post by: dedndave on January 14, 2010, 08:38:13 AM
it uses DOS INT's - you have to write enough of an OS to support it
it installs itself as a TSR - you need an EXEC loader function
i see INT 29h - fast console output function
there are probably others

another approach is to look at the source and see how they communicate with different types of mouse
then, write your own driver from there, or write it into your OS - i.e. use it as a learning tool
Title: Re: Handling mouse
Post by: sinsi on January 14, 2010, 08:55:07 AM
From what I remember about the BIOS mouse function, if you have a ps/2 mouse connected on boot it will work otherwise you take an error as having no ps/2 mouse.
The microsoft mouse driver (version 10) will use the functions if it gets no error on its driver init.
Title: Re: Handling mouse
Post by: dedndave on January 14, 2010, 10:01:59 AM
once you figure out how to communicate with a PS/2 mouse, a serial mouse,
and a USB mouse, i would think it would be an easy driver to write

looking at the cutemouse driver, it looks like there is more code involved installing it as a TSR - lol

if you think the mouse is hard, wait til you get to the video adapters and hard drives   :bg
Title: Re: Handling mouse
Post by: sinsi on January 14, 2010, 10:38:12 AM
serial mouse - easy, it's just a com port
ps/2 mouse - a bit harder since it uses the keyboard controller (but uses a different irq), but you can easily include a keyboard driver as a bonus
usb mouse - unless you tell the bios to use legacy kbd+mouse (ps/2 usually), you need a usb driver - 2 different v1 usb, enhanced usb (v2) and the new one.
You can see why OS's usually separate the hardware driver and the keyboard driver.

I downloaded a dos driver for usb - 90KB and 66KB as a tsr - usb is complex for the sake of 1 device...

Video adapter - use vesa
Hard drive - IDE/ATAPI is fairly easy since it's a standard. SATA means talking to a pci bus, hard (unless (once again) the bios is configured right).
Title: Re: Handling mouse
Post by: dedndave on January 14, 2010, 11:29:52 AM
Sinsi - Zulfi is trying to write his own little OS
he cannot load a vesa driver   :bg
at this point, he can't really "load" anything - well - no EXEC loader
he has gotten as far as booting a floppy and loading a small program that displays the time
you are right, though
as long as he uses a PS/2 or serial mouse, things are pretty simple
a USB mouse is a little more work
Title: Re: Handling mouse
Post by: FORTRANS on January 14, 2010, 03:37:41 PM
Hi,

   For my video cards, VESA is supported by the card's
BIOS.  Drivers implement more video modes or newer
versions of VESA.

   For writing a mouse driver, it should be straight
forward, after you figure out how you are going to
support TSR's, separate programs, and memory
management.  As sinsi said, using the serial port is
fairly easy.

Regards,

Steve N.
Title: Re: Handling mouse
Post by: zak100 on January 14, 2010, 06:35:19 PM
Hi,
Thanks for the reply. Actually I dont have the serial mouse and I would prefer ps/1 (not clear) mouse. Memory management is a tough job and people do Phd in this topic. Kindly specify some ideas about memory management in order to load my exe files and TSRs.

Zulfi.
Title: Re: Handling mouse
Post by: FORTRANS on January 15, 2010, 01:52:57 PM
Hi,

   Well, for memory management, you cold read up on how
MS-DOS does it.  Here is a simplified version of it.  After the
first part of DOS is loaded and takes control, memory is allocated
by DOS (Fn 48H) through the use of Memory Control Blocks
(MCB).  As 16 bytes is the increment allowed by the segment
registers in real mode, that is the "page" size used.  At the start
of the memory allocated 16 bytes are used to hold the MCB,
and then the allocated memory follows.

   The MCB has an identification flag, owner identification,
the number of pages allocated (size of memory block), and an
optional name.  The size is used to find the next  MCB and
forms a linked list of MCB's.


; Microsoft documents the MCB as the ARENA structure.
; This is a mix of MS and "Undocumented DOS"

ARENA   STRUC
        arenaSignature  DB      ?       ; 4DH valid item in chain, 5AH last item.
        arenaOwner      DW      ?       ; Owner, PSP segment of owner.
        arenaSize       DW      ?       ; Size in paragraphs.
        arenaReserved   DB      3 DUP(?)
        arenaName       DB      8 DUP(?)
ARENA   ENDS


   In this way MS-DOS can keep track of how memory is used
both by itself and user programs.  Use "MEM /D | MORE" to
see how this is used.

Regards,

Steve N.
Title: Re: Handling mouse
Post by: zak100 on January 15, 2010, 06:46:46 PM
Thanks for what you have said. I would get back with you people as soon as I get enough information to write a simple prog.

Zulfi.
Title: Re: Handling mouse
Post by: MichaelW on January 15, 2010, 06:47:06 PM
In my test above of the Interrupt 15h C2h functions, I was apparently testing under Windows 2000. I have not tried booting that system under MS-DOS, but I did an old Micron Millennia Xku with a Phoenix 4.0 BIOS (1998) and a PS/2 mouse that apparently does support these functions (under MS-DOS, but under Windows 2000 I get the same not-implemented error as the first system).

The attachment contains my test app. Running on that system, the app returns:
Reset : ERROR_SUCCESS
GetDeviceID : ERROR_SUCCESS
0
Disable : ERROR_INTERFACE
SetHandler : ERROR_SUCCESS
Press any key to continue . . .
Enable : ERROR_INTERFACE
ReturnStatus: ERROR_SUCCESS
statusByte : 20h
resolution :  2
sampleRate : 100

After trying many different arrangements of the calls, and ensuring that the BIOS is detecting the mouse, and eliminating every other problem that I can see or even suspect, I still get the ERROR_INTERFACE return. And while I can run the program repeatedly, if after running the program I move the mouse or press one of its buttons, the system locks up. So far I have not found any way around the problem, in the Interrupt List, in Frank van Gilluwe's The Undocumented PC, or online.
Title: Re: Handling mouse
Post by: dedndave on January 15, 2010, 07:11:36 PM
hi Michael
under XP MCE2005, i got a bunch of NOT_IMPLEMENTED's and a few 0's   :P
that may have gotten left in the wake of newer OS's supporting the "we drive damn near anything" approach
Title: Re: Handling mouse
Post by: FORTRANS on January 15, 2010, 07:28:04 PM
Hi,

   Rebooted, in a full screen VDM I got the following.  But
back in the WPS the mouse had left.  the machine has an
Award BIOS.  Good enough, or do you want another
machine or real DOS?

Regards,

Steve N.


F:\TEMP>test
Reset : ERROR_SUCCESS
GetDeviceID : ERROR_SUCCESS
0
Disable : ERROR_INTERFACE
SetHandler : ERROR_SUCCESS
Press any key to continue...
Enable : ERROR_SUCCESS
ReturnStatus : ERROR_SUCCESS
statusByte : 20h
resolution : 2
sampleRate : 100

F:\TEMP>test
Reset : ERROR_SUCCESS
GetDeviceID : ERROR_SUCCESS
0
Disable : ERROR_SUCCESS
SetHandler : ERROR_SUCCESS
Press any key to continue...
Enable : ERROR_SUCCESS
ReturnStatus : ERROR_SUCCESS
statusByte : 20h
resolution : 2
sampleRate : 100

F:\TEMP>
Title: Re: Handling mouse
Post by: MichaelW on January 15, 2010, 09:22:51 PM
Steve and Dave, thanks for testing. What I need is to find the key information that appears to be missing in the available sources. Initially, the BIOS setup was expecting a PnP OS (left over from an old Windows 98 installation), and I had to clear this setting before the BIOS would detect the mouse. I was hoping that this would be a relatively painless route to a mouse driver of sorts.
Title: Re: Handling mouse
Post by: sinsi on January 15, 2010, 11:32:21 PM
Booting into DOS5 with a ps2 mouse connected:
Reset : ERROR_SUCCESS
GetDeviceID : ERROR_SUCCESS
0
Disable : ERROR_NO_HANDLER
SetHandler : ERROR_SUCCESS
Press any key to continue . . .
Enable : ERROR_SUCCESS
ReturnStatus: ERROR_SUCCESS
statusByte : 20h
resolution :  0
sampleRate : 100

No mouse connected:
Reset : ERROR_SUCCESS
GetDeviceID : ERROR_SUCCESS
1
Disable : ERROR_SUCCESS
SetHandler : ERROR_SUCCESS
Press any key to continue . . .
Enable : ERROR_SUCCESS
ReturnStatus: ERROR_SUCCESS
statusByte : E0h
resolution :  -1
sampleRate : 93
Title: Re: Handling mouse
Post by: dedndave on January 16, 2010, 02:34:13 AM
you guys are gonna make me fire up all my old computers, one of these days - lol
Title: Re: Handling mouse
Post by: zak100 on January 16, 2010, 07:34:39 AM
Hi,
I got following at my work place:

D:\masm prog\masm help\PS2Mouse>test
Reset : ERROR_NOT_IMPLEMENTED
GetDeviceID : ERROR_NOT_IMPLEMENTED
0
Disable : ERROR_NOT_IMPLEMENTED
SetHandler : ERROR_NOT_IMPLEMENTED
Press any key to continue...
Enable : ERROR_NOT_IMPLEMENTED
ReturnStatus : ERROR_NOT_IMPLEMENTED
statusByte : 00h
resolution : 0
sampleRate : 0

D:\MASMPR~1\MASMHE~1\PS2Mouse>ver

Microsoft Windows XP [Version 5.1.2600]

D:\MASMPR~1\MASMHE~1\PS2Mouse>

Zulfi.
Title: Re: Handling mouse
Post by: FORTRANS on January 18, 2010, 05:58:19 PM
Hi,

   Well, I duplicated Michael's program (more or less) and
got the handler routine to print out the mouse events.  Not
too sure what that proves though.  At least one thing van
Gilluwe says is off in a trivial way, he says one of the bits is
set to one, and it's not on this system.  I'll see if I can get
it to do something useful later on.  Or at least verify that
things are progressing properly.  About half of my ideas
so far seem to just be interesting ways to have the program
croak.

Cheers,

Steve N.
Title: Re: Handling mouse
Post by: MichaelW on January 19, 2010, 01:26:48 AM
I did a little more work on this before I had to set it aside.

;=========================================================================
.model small, c
.386
include support.asm
.stack
;=========================================================================

ERROR_SUCCESS           equ 0
ERROR_INVALID_FUNCTION  equ 1
ERROR_INVALID_INPUT     equ 2
ERROR_INTERFACE         equ 3
ERROR_RESEND_COMMAND    equ 4
ERROR_NO_HANDLER        equ 5
ERROR_NOT_IMPLEMENTED1  equ 80h
ERROR_NOT_IMPLEMENTED2  equ 86h

;--------------------------------------------------------------------
; Sample rate is 10, 20, 40, 60, 80, 100, or 200 samples per second.
;--------------------------------------------------------------------

SAMPLE_RATE_10          equ 0
SAMPLE_RATE_20          equ 1
SAMPLE_RATE_40          equ 2
SAMPLE_RATE_60          equ 3
SAMPLE_RATE_80          equ 4
SAMPLE_RATE_100         equ 5
SAMPLE_RATE_200         equ 6

;-----------------------------------------
; Resolution 1, 2, 4, or 8 counts per mm.
;-----------------------------------------

RESOLUTION_1            equ 0
RESOLUTION_2            equ 1
RESOLUTION_3            equ 2
RESOLUTION_8            equ 3

;---------------------------------------------------------------------
; Structure to hold status values returned by ReturnStatus procedure.
;---------------------------------------------------------------------

_STATUS STRUCT
  statusByte db ?
  resolution db ?
  sampleRate db ?
_STATUS ENDS

;=========================================================================
.data
    status    _STATUS <>
    deviceID  db      0
.code
;=========================================================================
ShowErrorStatus proc npCaption:WORD, wStatus:WORD
    .if wStatus == ERROR_SUCCESS
        print npCaption,"ERROR_SUCCESS",NL
    .elseif wStatus == ERROR_INVALID_FUNCTION
        print npCaption,"ERROR_INVALID_FUNCTION",NL
    .elseif wStatus == ERROR_INVALID_INPUT
        print npCaption,"ERROR_INVALID_INPUT",NL
    .elseif wStatus == ERROR_INTERFACE
        print npCaption,"ERROR_INTERFACE",NL
    .elseif wStatus == ERROR_RESEND_COMMAND
        print npCaption,"ERROR_RESEND_COMMAND",NL
    .elseif wStatus == ERROR_NO_HANDLER
        print npCaption,"ERROR_NO_HANDLER",NL
    .elseif wStatus == ERROR_NOT_IMPLEMENTED1 || ERROR_NOT_IMPLEMENTED2
        print npCaption,"ERROR_NOT_IMPLEMENTED",NL
    .endif
    ret
ShowErrorStatus endp
;=========================================================================
DisableMouse proc uses bx
    mov ax, 0c200h
    xor bh, bh
    int 15h
    movzx ax, ah
    jc  @f
    xor ax, ax
  @@:
    ret
DisableMouse endp
;=========================================================================
EnableMouse proc uses bx
    mov ax, 0c200h
    mov bh, 1
    int 15h
    movzx ax, ah
    jc  @f
    xor ax, ax
  @@:
    ret
EnableMouse endp
;=========================================================================
ResetMouse proc
    mov ax, 0c201h
    int 15h
    movzx ax, ah
    jc  @f
    xor ax, ax
  @@:
    ret
ResetMouse endp
;=========================================================================
SetSampleRate proc uses bx sampleRate:WORD
    mov ax, 0c202h
    mov bx, sampleRate
    mov bh, bl
    int 15h
    movzx ax, ah
    jc  @f
    xor ax, ax
  @@:
    ret
SetSampleRate endp
;=========================================================================
SetResolution proc uses bx resolution:WORD
    mov ax, 0c203h
    mov bx, resolution
    mov bh, bl
    int 15h
    movzx ax, ah
    jc  @f
    xor ax, ax
  @@:
    ret
SetResolution endp
;=========================================================================
GetDeviceID proc uses bx di npID:WORD
    mov ax, 0c204h
    int 15h
    movzx ax, ah
    jc  @f
    mov di, npID
    mov [di], bh
    xor ax, ax
  @@:
    ret
GetDeviceID endp
;=========================================================================
InitializeMouse proc uses bx dataPackageSize:WORD
    mov ax, 0c205h
    mov bx, dataPackageSize
    mov bh, bl
    int 15h
    movzx ax, ah
    jc  @f
    xor ax, ax
  @@:
    ret
InitializeMouse endp
;=========================================================================
ReturnStatus proc uses di bx cx dx npStatus:WORD
    mov ax, 0c206h
    xor bh, bh
    int 15h
    movzx ax, ah
    jc  @f
    mov di, npStatus
    mov [di]._STATUS.statusByte, bl
    mov [di]._STATUS.resolution, cl
    mov [di]._STATUS.sampleRate, dl
    xor ax, ax
  @@:
    ret
ReturnStatus endp
;=========================================================================
SetHandler proc uses es bx handlerSeg:WORD, handlerOffset:WORD
    mov ax, 0c207h
    mov es, handlerSeg
    mov bx, handlerOffset
    int 15h
    movzx ax, ah
    jc  @f
    xor ax, ax
  @@:
    ret
SetHandler endp
;=========================================================================
;-----------------------------------------------------------------------
; The current handler partially processes the X and Y deltas and stores
; the result in two word vars in the code segement. Note that I am
; depending on MASM to take care of the segment overrides.
;
; WORD 1: status (see #00525)
; WORD 2: X data (high byte = 00h)
; WORD 3: Y data (high byte = 00h)
; 15-8 reserved (0)
;  7   Y data overflowed
;  6   X data overflowed
;  5   Y data is negative
;  4   X data is negative
;  3   reserved (1)
;  2   reserved (0)
;  1   right button pressed
;  0   left button pressed
;
; I had to explicitly set the packet size to 3 bytes.
;
; I decided to try a 640x200 virtual screen, so the cursor
; positions should be limited to 0-639, 0-199.
;
; I left the resolution at the default 4 counts per mm.
;
; And after a few days away from it, I see some obvious errors in the
; handler code.
;-----------------------------------------------------------------------

_X dw 0
_Y dw 0

Handler proc far uses ax bx cx dx w3:WORD,w2:WORD,w1:WORD,w0:WORD
    mov dx, w2      ; dY low 8 bits
    neg dx
    mov cx, w1      ; dX low 8 bits
    mov ax, w0
    shl ax, 3       ; shift Y sign into bit 8
    mov dh, ah      ; copy to dY
    xor ah, ah
    shl ax, 1       ; shift X sign into bit 8
    mov ch, ah      ; copy to dX
    add _X, cx
    test _X, 8000h
    jz  @f
    mov _X, 0
  @@:
    add _Y, dx
    test _Y, 8000h
    jz  @f
    mov _Y, 0
  @@:
    ret
Handler endp

;=========================================================================
.startup
;=========================================================================

    ;-------------------------------------------------------
    ; This initialization sequence works on my test system.
    ;-------------------------------------------------------
   
    invoke DisableMouse
    invoke ShowErrorStatus, chr$("Disable : "), ax
    invoke InitializeMouse, 3
    invoke ShowErrorStatus, chr$("Initialize : "), ax
    invoke SetHandler, seg handler, offset handler
    invoke ShowErrorStatus, chr$("SetHandler : "), ax
    invoke EnableMouse
    invoke ShowErrorStatus, chr$("Enable : "), ax
    call WaitKey
    cls
  @@:
    loc 0,0
    mov ax, _X
    xor dx, dx
    mov cx, 640
    div cx
    print word$(dx),chr$(9)
    mov ax, _Y
    xor dx, dx
    mov cx, 200
    div cx
    print word$(dx)
    jmp @b

    call WaitKey
;=========================================================================
.exit
end

Title: Re: Handling mouse
Post by: zak100 on January 19, 2010, 05:05:42 AM
Thanks for this great work.

Zulfi.
Title: Re: Handling mouse
Post by: FORTRANS on January 21, 2010, 02:00:40 PM
Hi,

   On a system with a three button mouse, the third
button seems to cause a mouse event with spurious
movement indicated.  Or maybe just spurious data.
There does not seem to be any real indication of a
button press.

   Normal movement and the other two buttons work
as expected.  I'll move the mouse around and see if
the other system responds in the same way.

Regards,

Steve
Title: Re: Handling mouse
Post by: zak100 on January 22, 2010, 06:23:53 PM
Hi,
I cant find support.asm. Kindly guide me in this regard.

Zulfi.
Title: Re: Handling mouse
Post by: MichaelW on January 22, 2010, 06:34:49 PM
Support.asm is in the attachment here:

http://www.masm32.com/board/index.php?topic=13023.msg101968#msg101968

Title: Re: Handling mouse
Post by: zak100 on January 23, 2010, 04:58:55 AM
Thanks. I would try it shortly.

Zulfi.
Title: Re: Handling mouse
Post by: zak100 on January 23, 2010, 02:58:18 PM
Hi,
I named this file as mouse.bin. I compiled and linked without any error. Then I copied the bootsector and this mouse.bin. I saw 'A' but I pressed enter key , I didnt find the mouse cursor on the screen. Kindly help me in this regard.

Zulfi.
Title: Re: Handling mouse
Post by: FORTRANS on January 25, 2010, 11:08:27 PM
Hello,

   The mouse cursor in DOS is managed by a mouse
driver.  When you boot your own code you do not have
those drivers loaded.  You have to write the equivalent
of a driver to manage the cursor.

Regards,

Steve N.
Title: Re: Handling mouse
Post by: zak100 on January 26, 2010, 05:00:45 AM
Hi,
Thanks. I think I saw mouse cursor shape in cutemouse. Okay what is the function of code provided by MichealW, if its not a driver?

Zulfi.
Title: Re: Handling mouse
Post by: MichaelW on January 26, 2010, 06:04:17 AM
The last code I provided is just a test. I determined that getting the mouse button status is easy, so I focused on the more difficult problem of getting the mouse cursor position in some useful form. If I can find time to make that work, the next task will be the mouse cursor. The "pointer" cursor is for the graphics modes. For the alphanumeric modes the cursor is normally a solid block the size of the character box. The main source of information I'm using for the cursor position code is here:

http://www.computer-engineering.org/ps2mouse/

Title: Re: Handling mouse
Post by: zak100 on January 26, 2010, 10:17:40 AM
Thanks for solving this confusion. Thanks for your good intentions. I think I should also work on that. This can be a good learning exercise.

Zulfi.
Title: Re: Handling mouse
Post by: FORTRANS on January 28, 2010, 02:24:52 PM
Hi,

   Thanks for the link.  That has some good information
that I had not seen.  I have got my variant of the program
working with a "standard" mouse.  But am having some
problems with the "Intellimouse" procedures described.  So
no Z motion yet.  Setting the data packet to 4 bytes locks
up the old HP laptop I'm using when running MS-DOS.  Odd
that.

Regards,

Steve N.
Title: Re: Handling mouse
Post by: FORTRANS on January 31, 2010, 07:44:56 PM
Hi,

   In the towel I will throw.  Getting nowhere we are.  May
the farce be kinder to you.  Here is what I have got up to
now.  Hope someone finds something of interest in it.  Way
too many reboots here.  The testcase programs are attached.
Only of note for Real Mode environments.  Looks like a two
button mouse can be used with this kind of setup.

   Thanks MichaelW for the posted code and link.

Best regards,

Steve N.

        COMMENT |
M = Microsoft "Mouse Port Compatible Mouse 2.1A" (Two button ball)
L = Logitech "MouseMan Traveler" (~3 button optical + wheel)
D = Dell OEM Microsoft "IntelliMouse 1.3A PS/2 Compatible" (~3 button
    ball + wheel)

0 = Packet size not set
3 = Packet size 3
4 = Packet size 4

   Results with the IntelliMouse sequence should only apply to the case
of packet size 4, but was used sometimes with packet size 3 as well.  L
and D respond to the IntelliMouse sequence by changing the device ID to
03, M stays with 00.  My HP laptop responds to packet size of 3 and the
IntelliMouse sequence by having the now enabled fourth byte, Z movement
or wheel motion, as a new mouse event data packet overwriting the first
packet.  This trashes the mouse button and motion reports.

   "Normal responses" means that the test case program reported success
to the BIOS interrupt 15H.  Some of the following is from leaky memory.
Windows hides the BIOS interrupt.  The OS/2 VDM supplies "fake" data to
the program.  Real data, give or take, but not reported directly by the
Int 15H call.

        HP OmniBook 800 CS (SystemSoft BIOS)
L 0 3 4   OS/2 VDM      Acts as 2 button, third button = spurious movement.
L 0       DOS 6.2x      Normal responses, but no mouse events.
L 3       DOS 6.2x      Normal 3 button mouse, no wheel (see above).
L 4       DOS 6.2x      Normal responses, hard lock on mouse event, video
                        corrupted (at one time).
M 3       DOS 6.2x      Normal 2 button mouse.
M 4       DOS 6.2x      Normal responses, hard lock on movement.

        ITOX P-III (Award BIOS, (now Pheonix))
M         Windows 2000  Error_Not_Implemented2.
M 0 3 4   OS/2 VDM      Acts as 2 button mouse.
L   3 4   OS/2 VDM      Acts as 2 button, third button = spurious data,
                        wheel was either nothing or up and down arrows
                        (cursor motion).
D   3 4   OS/2 VDM      Acts as 2 button mouse, third button is a zero
                        mouse event, wheel is up and down arrows.
M 0       DOS 6.2x      Normal responses, but no mouse events.
M 3       DOS 6.2x      Acts as 2 button mouse.
M 4       DOS 6.2x      Normal responses, but no mouse events.
L 3       DOS 6.2x      Normal 3 button mouse, no wheel.
D 3       DOS 6.2x      Normal 3 button mouse, no wheel.
L 4       DOS 6.2x      Normal responses, movement: X gone, Y on X, Z on Y.
D 4       DOS 6.2x      Normal responses, movement: X gone, Y on X, Z on Y.
                        (Z movement very small)

        Quantex P-90
          DOS 6.2x      Error_Not_Implemented (No PS/2 port) test of error.
                |


Edit:
   In the cut and paste to post the above comments, I overwrote
them with an older version.  I tried to recreate them to clarify
things a bit.

SRN
Title: Re: Handling mouse
Post by: FORTRANS on February 01, 2010, 02:19:14 PM
Hi,

   Fixed last post.

Sorry,

Steve
Title: Re: Handling mouse
Post by: zak100 on February 01, 2010, 06:02:37 PM
Hi,
Thanks for help on this. Actually I have downloaded the link but I am not getting time to go through it. But i surely want to tackle this issue and hope soon.

Zulfi.