aboutsummaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-01-20 23:22:42 -0700
committerChristian Cunningham <cc@localhost>2022-01-20 23:22:42 -0700
commit73a80de4228a498b483c8e10ab317920d978d507 (patch)
treeeea73a138a509d7758ef477d4997cf7147233604 /linker.ld
parentc2e52566ed53b53227a6fe577a05170766a1ae4c (diff)
Moved globals to file
Diffstat (limited to 'linker.ld')
-rw-r--r--linker.ld1
1 files changed, 1 insertions, 0 deletions
diff --git a/linker.ld b/linker.ld
index 58da7ca..2cacec0 100644
--- a/linker.ld
+++ b/linker.ld
@@ -30,6 +30,7 @@ SECTIONS
{
bss = .;
*(.bss*)
+ KEEP(*(.bss.mmheap))
KEEP(*(.bss.heap))
}
. = ALIGN(4096); /* align to page size */