SetApplBase
SetApplBase Set base address of application heap and initialize
#include <Memory.h> Memory Manager
void SetApplBase(baseAddr );
Ptr baseAddr ; address to use as the base of the heap
SetApplBase changes the starting address of the application heap and the
re initializes the application zone via InitApplZone. This function is used by
the system; applications rarely need it.
baseAddr is the address where you want the application heap to start.
Returns: none (check MemError for result)

Notes: If for some reason you do need to call SetApplBase in an application,
remember that the calling code must not reside in the application code or it
will be discarded.