better documentation
[rrq/rrqforth.git] / adoc / p_tempspace.adoc
1 // temp.asm:    WORD p_tempspace,'TEMPSPACE',dovariable
2
3
4 anchor:p_tempspace[]
5
6 === Word: TEMPSPACE
7
8 ....
9 Data stack: ( -- a )
10 ....
11
12 "TEMPSPACE" is a variable word that holds three cells the for managing
13 "temporary memory":
14
15  * the size of the temporary memory space (default 104857600 bytes)
16  * the base address for whole temporary memory area
17  * the amount currently used
18  
19 This memory is intended to be used by requesting snippets of memory in
20 a cyclic fashion via <<p_temp,TEMP>> without concern about it possibly
21 overlapping a prior request.
22
23