summaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
authordzwdz2021-06-25 21:57:30 +0200
committerdzwdz2021-06-25 21:57:30 +0200
commit7e8a831e1fa1fb98d2486f0c262c2609c176abab (patch)
treead3304a0d16281e019b1e33f7383ed4b97f89afb /linker.ld
parent654ca8603381ffa385350242cfb96906cf612279 (diff)
malloc stub + processes
well, there's only one process, but shh
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 dd7c64c..be2b44f 100644
--- a/linker.ld
+++ b/linker.ld
@@ -21,4 +21,5 @@ SECTIONS
*(COMMON)
*(.bss)
}
+ _kernel_end = (. + 0xFFF) & ~0xFFF; /* aligned to 4K */
}