2020-01-29 22:40:34 -05:00
|
|
|
/* 24kiB stack. */
|
|
|
|
__stack_size__ = 0x6000;
|
|
|
|
_estack = __StackTop;
|
|
|
|
_sstack = __StackLimit;
|
|
|
|
|
2020-06-10 05:11:30 -04:00
|
|
|
/* Do not use the traditional C heap. */
|
|
|
|
__heap_size__ = 0;
|
|
|
|
|
2020-01-29 22:40:34 -05:00
|
|
|
/* Use second OCRAM bank for GC heap. */
|
|
|
|
_gc_heap_start = ORIGIN(m_data2);
|
|
|
|
_gc_heap_end = ORIGIN(m_data2) + LENGTH(m_data2);
|