summaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-09-01 12:10:13 +0200
committerMiguel <m.i@gmx.at>2018-09-01 12:10:13 +0200
commit51ab94a29f64de42e3dec3a3ef0ec6a94cda28a6 (patch)
treec2cf5f0b31c2f80ac815dc366ece52a42983219f /linker.ld
parentd52c3d119dbbbf2a9573e7698a878cf74afdd08c (diff)
working on new syscalls
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)