* ALLOCATE ( size -- ptr|0 code ) allocate a chunk of memory from the system heap. use FREE to release the memory area back to the system. a code of zero means success.
ALLOCATE
( size -- ptr|0 code )
FREE
memory ordinary primitive
* FREE ( ptr -- code ) free the memory from ALLOCATE a code of zero means success.
( ptr -- code )
* RESIZE ( ptr newsize -- ptr' code ) resize the system memory chunk. a code of zero means success.
RESIZE
( ptr newsize -- ptr' code )
ENVIRONMENT MEMORY-ALLOC-EXT
no special info, see general notes
memory ordinary constant