Date: Mon, 22 Nov 1999 13:22:03 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Protozone cc: djgpp AT delorie DOT com Subject: Re: Error: cannot convert `regs' from type `REGS' to type `REGS *' In-Reply-To: <81aqis$8r4$1@toto.tig.com.au> 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 Mon, 22 Nov 1999, Protozone wrote: > I'm trying out some basic graphics in DJGPP using a tutorial I found ( and > when compiling RHIDE gives me the error: > Error: cannot convert `regs' from type `REGS' to type `REGS *' The function int86 needs a pointer to REGS, so you need to call it like this: int86(0x10, ®s, ®s);