diff options
Diffstat (limited to 'cc3200/application.lds')
-rw-r--r-- | cc3200/application.lds | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cc3200/application.lds b/cc3200/application.lds index 147941f4cf..162988da99 100644 --- a/cc3200/application.lds +++ b/cc3200/application.lds @@ -89,6 +89,17 @@ SECTIONS . = ALIGN(8); _ebss = .; } > SRAM + + /* place here functions that are only called during boot up, */ + /* that way, we can re-use this area for the micropython heap */ + .boot : + { + . = ALIGN(8); + _boot = .; + *(.boot*) + . = ALIGN(8); + _eboot = .; + } > SRAM /* allocate the micropython heap */ .heap : |