Date: Sat, 13 May 95 19:05:08 -0400 From: Wonkoo Kim To: "Kent D. Lottis" , DJGPP List Reply-To: Wonkoo Kim Subject: Re: Dumb Newbie Question Re:Low Memory Accesss > Date: Sat, 13 May 95 13:59:32 -0700 > From: "Kent D. Lottis" > > Does gcc support far (16:32) pointers? I was under the (erroneous) > impression that, coming from the boring but simple Unix world of > flat address spaces, gcc did NOT support far pointers. Don't worry about pointer types like 'near' or 'far' or 'huge' etc. when you use djgpp. Memory space is 32-bit linear with djgpp, and you can write programs without headache of memory segment. //-------------------------------------------------------------------- // Wonkoo Kim // wkim+@pitt.edu