diff options
| author | Miguel <m.i@gmx.at> | 2018-09-01 12:10:13 +0200 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2018-09-01 12:10:13 +0200 |
| commit | 51ab94a29f64de42e3dec3a3ef0ec6a94cda28a6 (patch) | |
| tree | c2cf5f0b31c2f80ac815dc366ece52a42983219f /linker.ld | |
| parent | d52c3d119dbbbf2a9573e7698a878cf74afdd08c (diff) | |
working on new syscalls
Diffstat (limited to 'linker.ld')
| -rw-r--r-- | linker.ld | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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) |
