fix: increment location counter with heap size (#1201)
Some checks failed
Processor / processor simulation (push) Has been cancelled

This commit is contained in:
stnolting 2025-03-09 18:55:15 +01:00 committed by GitHub
commit e9fe37f614
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -190,7 +190,7 @@ SECTIONS
PROVIDE(__heap_start = .);
/* start section on WORD boundary */
. = ALIGN(4);
. = __neorv32_heap_size;
. += __neorv32_heap_size;
/* finish section on WORD boundary */
. = ALIGN(4);
PROVIDE(__heap_end = .);