Date: Thu, 16 Jan 1997 13:16:05 +0200 (IST) From: Eli Zaretskii To: Jonathan Addleman cc: djgpp AT delorie DOT com Subject: Re: helping newcomers In-Reply-To: <32dc3ea2.80449404@news.mcgill.ca> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Wed, 15 Jan 1997, Jonathan Addleman wrote: > farpointers caused me some trouble at first... I still > don't know what they are Farpointers in DJGPP are a way to access data which is outside your program's address space. When you access the data of your program, the code produced by GCC uses the DS register as the selector for memory accesses. Farptr functions use another register (usually FS) where another selector (such as _dos_ds) is loaded.