
Note: You must add uk to the end of the address, it's to help prevent spam. |
FRE() TYPE: Function Action: This function tells you how much RAM is available for
your program and its variables. If a program tries to use more
space than is available, the OUT OF MEMORY error results. NOTE: If the result of FRE is negative, add 65536 to the FRE number get the number of bytes available in memory. EXAMPLES of FRE Function:
NOTE: The following always tells you the current available RAM: PRINT FRE(0) - (FRE(0) < 0)* 65536 |