diff options
author | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2024-01-09 20:56:07 +0100 |
---|---|---|
committer | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2024-01-09 21:00:24 +0100 |
commit | 59f22bc7ce5bbadf62722f3db5c93b45e86e4cca (patch) | |
tree | c5771b21f6c12f3e58cbb6c6dda8df3bc4b23798 /stage3.ld | |
parent | 33bb4187103c49c81fbf7c6f18ebcfd4c4d66fd2 (diff) | |
download | cuddles-59f22bc7ce5bbadf62722f3db5c93b45e86e4cca.tar.xz |
use ELF for kernel
Diffstat (limited to 'stage3.ld')
-rw-r--r-- | stage3.ld | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -1,9 +1,4 @@ -OUTPUT(stage3.bin) -OUTPUT_FORMAT(binary) - -SECTIONS +MEMORY { - . = 0x9000; - .text : { *(.text) } - .data : { *(.bss .data .rodata) } + ram (rwx) : ORIGIN = 0x100000, LENGTH = 0x100000 } |