Date: Thu, 8 Apr 1999 12:10:37 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Max Erhard cc: djgpp AT delorie DOT com Subject: Re: mouse In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Tue, 6 Apr 1999, Max Erhard wrote: > How can I access the mouse on INT33h, all I'm getting so far is general > protection faults, I have worked out that I cannot do this:- > > regs.x.ax = 3; > int86(0x33,®s,®s); int86 is a trouble generator; don't use it. I suggest to use the function __dpmi_int instead. See section 18.1 of the DJGPP FAQ list for the details.