aboutsummaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-02-04 18:24:31 -0700
committerChristian Cunningham <cc@localhost>2022-02-04 18:24:31 -0700
commit13b2bf797bdf4fab0115675c4d2541fff05e285c (patch)
tree6b622ffe738a8eb76e0c0f7050fab13d1bf1acad /linker.ld
parent6e7f93d6a09865937dde1124a6c3f36eebcd9d82 (diff)
Implemented new Real-Time friendly Memory Allocation Scheme
Diffstat (limited to 'linker.ld')
-rw-r--r--linker.ld2
1 files changed, 2 insertions, 0 deletions
diff --git a/linker.ld b/linker.ld
index 260e1f1..c97501c 100644
--- a/linker.ld
+++ b/linker.ld
@@ -33,6 +33,8 @@ SECTIONS
. = ALIGN(4096);
KEEP(*(.bss.estacks))
. = ALIGN(4096);
+ KEEP(*(.bss.kmem))
+ . = ALIGN(4096);
*(.bss)
*(.bss.*)
KEEP(*(.bss.mmheap))