How does the function 'malloc()'
work and what memory does it use?
Answer: Malloc()
uses a special section of memory called ' sysmem ' whose size is determined by the -heap
directive in the linker (see the assembly language tools manual). malloc() itself is a
function call, whose source code can be found in RTS.SRC. Use the archive utility
to extract it.