Date: Sat, 4 Mar 2000 18:26:19 +0500 Message-Id: <200003041326.SAA00765@midpec.com> From: Prashant TR To: jozzam AT yahoo DOT com CC: djgpp AT delorie DOT com In-reply-to: <89m8i7$2eb$1@news.maltanet.net> (jozamm@yahoo.com) Subject: Re: Creating Libraries References: <89m8i7$2eb$1 AT news DOT maltanet DOT net> Reply-To: djgpp AT delorie DOT com Errors-To: dj-admin AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > I am new to DJGPP. In pascal wwe used to create overlays so one large > program was split into smaller ones. How can I do the same in DJGPP. There's no need to create overlay files in DJGPP. In pascal (Turbo Pascal), you had overlay files because the size of the executable+data could not exceed 1 Megabyte. However, in 32-bit protected mode, your file size can be as large as you like (upto 4GB). This makes programming easier by not having to bother about overlaying.