summaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
Diffstat (limited to 'linker.ld')
-rw-r--r--linker.ld6
1 files changed, 4 insertions, 2 deletions
diff --git a/linker.ld b/linker.ld
index c5fa5f8..4d61b48 100644
--- a/linker.ld
+++ b/linker.ld
@@ -2,6 +2,7 @@ ENTRY(_start)
SECTIONS
{
+ /* 0x00000500 - 0x00007BFF : guaranteed free to use */
. = 0x7000;
kernel_start = .;
@@ -11,8 +12,9 @@ SECTIONS
*(.smp)
}
- . = 1M;
- /* _start code as 0x10000 and rest of code*/
+ /* 0x00100000 - 0x00EFFFFF : free for use (if it exists) */
+ . = 0x100000;
+ /* _start code as 0x100000 and rest of code*/
.text BLOCK(4K) : ALIGN(4K)
{
*(.multiboot)