micropython/ports/mimxrt/boards/MIMXRT1021.ld
2020-06-09 19:04:23 +10:00

9 lines
216 B
Plaintext

/* 24kiB stack. */
__stack_size__ = 0x6000;
_estack = __StackTop;
_sstack = __StackLimit;
/* Use second OCRAM bank for GC heap. */
_gc_heap_start = ORIGIN(m_data2);
_gc_heap_end = ORIGIN(m_data2) + LENGTH(m_data2);