Date: Wed, 26 May 93 16:15:42 EDT From: DJ Delorie To: thinman AT netcom DOT com Cc: djgpp AT sun DOT soe DOT clarkson DOT edu Subject: Re: Extended memory question - DOS 5.0 > I don't know my way around the thicket of DOS memory > extenders. Under DOS 5.0, what command (in config.sys ?) > makes all my many megs of RAM available to DJGPP programs. > The DJGPP Readme mentions the "int15" method, and > the HIMEM.sys docs mention int15, so this may be a clue. > Is there a problem with the size of the "page frame", > or the "number of handles"? If you do nothing, all will be available. To tell what is available, run the "mem" command, and look for information in this order: 1. If it lists available expanded memory, that's how much go32 uses. 2. If it lists XMS memory, that's how much go32 uses. 3. If it lists extended memory, that's how much go32 uses. Go32 will not use memory from more than one source, and searches for the first available type from the list above. Normally, when you run a memory-aware program (himem.sys, xms.sys, emm386.sys), the default is to convert all memory, so unless you try to do it wrong you usually won't. DJ