diff options
Diffstat (limited to 'link.ld')
| -rw-r--r-- | link.ld | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -0,0 +1,22 @@ +ENTRY(_start) + +SECTIONS { + . = 0x80000000; + + .text : ALIGN(4) { + *(.text*) + } + + .rodata : ALIGN(8) { + *(.rodata*) + } + + .data : ALIGN(8) { + *(.data*) + } + + .bss : ALIGN(8) { + *(.bss*) + *(COMMON) + } +} |
