Name
GetMemoryInfo -- get memory information
Synopsis
space = GetMemoryInfo(type)
Function
This function returns information about the amount of memory in your system. The following constants can be specified as type:

#CHIPMEMORY:
Returns the amount of chip memory

#FASTMEMORY:
Returns the amount of fast memory

Inputs
type
one of the constants as listed above
Results
space
memory space
Example
chip=GetMemoryInfo(#CHIPMEMORY)
fast=GetMemoryInfo(#FASTMEMORY)
Print("You have", chip, "bytes of chip memory and", fast,
      "bytes of fast memory!")
The above code prints out the chip and fast memory.

Show TOC