  MEMORY

   MEMORY(<x>)

   Type: function

   Claims memory of x size, returning a handle to the address where the
   memory block resides. Use FREE to release the memory. Note that OPTION
   MEMTYPE can influence the type of memory created. Example creating a
   memory area to store integers:

   OPTION MEMTYPE int
   area = MEMORY(100)

