| |||||||||||||
On-Line Manuals RealView Libraries and Floating Point Support Guide | Creating the heap
Specify the start and end of the heap by defining symbols NoteThe Example 3.6 shows how to set up the heap pointers using assembly language. Example 3.6. Assembly language EXPORT __heap_base __heap_base EQU 0x400000 ; equal to the start of the heap EXPORT __heap_limit __heap_limit EQU 0x800000 ; equal to the end of the heap Example 3.7 shows how to set up the heap pointer using embedded assembler in C. | ||||||||||||
| |||||||||||||