diff options
Diffstat (limited to 'Linker/PowerPC.ld')
| -rw-r--r-- | Linker/PowerPC.ld | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/Linker/PowerPC.ld b/Linker/PowerPC.ld index 18b6527e..722a86b8 100644 --- a/Linker/PowerPC.ld +++ b/Linker/PowerPC.ld @@ -2,20 +2,20 @@ ENTRY(_start) SECTIONS { - . = 0x02000000; - .text BLOCK(4K) : ALIGN(4K) - { - *(.text) - } + . = 0x02000000; + .text BLOCK(4K) : ALIGN(4K) + { + *(.text) + } . = 0x02100000; - .data BLOCK(4K) : ALIGN(4K) - { + .data BLOCK(4K) : ALIGN(4K) + { - *(.rodata) - *(.data) - } - .bss BLOCK(4K) (NOLOAD) : ALIGN(4K) - { - *(.bss) - } + *(.rodata) + *(.data) + } + .bss BLOCK(4K) (NOLOAD) : ALIGN(4K) + { + *(.bss) + } }
\ No newline at end of file |
