Date: Sun, 2 Feb 1997 11:02:40 +0200 (IST) From: Eli Zaretskii To: Max cc: djgpp AT delorie DOT com Subject: Re: Programming Graphics In-Reply-To: <5cumje$n0n@sjx-ixn10.ix.netcom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On 1 Feb 1997, Max wrote: > they worked fine, but I wanted to try it out on a 32-bit complier (DJGPP of > course) and DJGPP refuses to compile and run the code properly. > I've found that what seems to be culprits in the code involve the use > of the _inp, _outp, and _fmemset commands. *sigh* These are all DOSisms. Use `inp' and `outp' instead of `_inp' and `_outp', and convert `_fmemset' to `memset'. Also, in the future make sure to tell what are the error messages that GCC prints. It is not always easy to guess the nature of your problems if you don't post these details.