Date: Fri, 17 Nov 2000 17:25:14 +0200 From: "Eli Zaretskii" Sender: halo1 AT zahav DOT net DOT il To: "Gorden" Message-Id: <9743-Fri17Nov2000172513+0200-eliz@is.elta.co.il> X-Mailer: Emacs 20.6 (via feedmail 8.3.emacs20_6 I) and Blat ver 1.8.6 CC: djgpp AT delorie DOT com In-reply-to: <8v2412$d2v@netnews.hinet.net> (gorden@ms9.url.com.tw) Subject: Re: about mouse cursor in bios graphics mode References: <8v2412$d2v AT netnews DOT hinet DOT net> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > From: "Gorden" > Newsgroups: comp.os.msdos.djgpp > Date: Fri, 17 Nov 2000 10:11:43 +0800 > > int main() > { > _dpmi_regs r; > > /* set video mode 640*480*16 */ > r.h.ah = 0; > r.h.al = 0x12; > __dpmi_int(0x10, &r); > > /* changce mouse cursor type */ > r.x.ax = 9; > r.x.bx = 0; > r.x.cx = 0; > r.x.dx = (I do not know what is this ?) > r.x.es = (I do not know what is this ?) > __dpmi_int(0x33, &r); > } > > I have see sections 18.2 and 18.4 of the DJGPP FAQ list, > But I try it , failure Please post here the code that you wrote after reading the FAQ, and please describe how did it fail. Then someone will be able to help you find the problem(s).