mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 09:38:32 -04:00
This commit is contained in:
parent
96d4684fa7
commit
19a24602b8
4 changed files with 150 additions and 18 deletions
|
@ -217,6 +217,19 @@ __user_initial_stackheap
|
|||
;******************************************************************************
|
||||
ALIGN
|
||||
|
||||
; Note:
|
||||
; Using READWRITE places Section .RTOSHeap in Region ER_RW.
|
||||
; Using NOINIT places Section .RTOSHeap in Region ER_ZI,which means
|
||||
; "ZEROINITIALIZE" (sic), and which is the last region in memory. Then
|
||||
; we need to make this section the last section, which is somewhat tricky,
|
||||
; because we cannot use the sectionname, but need to use a defined symbol:
|
||||
; Linker option: "--last xHeap"
|
||||
|
||||
EXPORT xHeap
|
||||
|
||||
AREA RTOSHeap, DATA, NOINIT
|
||||
xHeap
|
||||
|
||||
;******************************************************************************
|
||||
;
|
||||
; Tell the assembler that we're done.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue