Re: allocation of memory
- Posted by Irv Mullins <irv at ELLIJAY.COM> Jan 17, 1999
- 554 views
On Sun, 17 Jan 1999 12:02:11 -0500, Bernie Ryan <bwryan at PCOM.NET> wrote: >Is their a way to allocate a specific memory address in Eu ? > >Can it be determined what address space is free to use in Eu ? > >Thasnks Bernie Ryan p = allocate(100) will return an address pointing to 100 bytes of free memory. The will be available until you do a free() You can poke machine code into that memory, and call() the code. I don't think there is any way to control exactly where that memory starts, however. Euphoria finds some unused space and tells you where it is. Irv