mirror of
https://github.com/stnolting/neorv32.git
synced 2025-04-24 22:27:21 -04:00
fix: increment location counter with heap size (#1201)
Some checks failed
Processor / processor simulation (push) Has been cancelled
Some checks failed
Processor / processor simulation (push) Has been cancelled
This commit is contained in:
commit
e9fe37f614
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ SECTIONS
|
||||||
PROVIDE(__heap_start = .);
|
PROVIDE(__heap_start = .);
|
||||||
/* start section on WORD boundary */
|
/* start section on WORD boundary */
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
. = __neorv32_heap_size;
|
. += __neorv32_heap_size;
|
||||||
/* finish section on WORD boundary */
|
/* finish section on WORD boundary */
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
PROVIDE(__heap_end = .);
|
PROVIDE(__heap_end = .);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue