diff options
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) |
