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