summaryrefslogtreecommitdiffhomepage
path: root/Linker/PowerPC.ld
diff options
context:
space:
mode:
Diffstat (limited to 'Linker/PowerPC.ld')
-rw-r--r--Linker/PowerPC.ld21
1 files changed, 0 insertions, 21 deletions
diff --git a/Linker/PowerPC.ld b/Linker/PowerPC.ld
deleted file mode 100644
index 722a86b8..00000000
--- a/Linker/PowerPC.ld
+++ /dev/null
@@ -1,21 +0,0 @@
-ENTRY(_start)
-
-SECTIONS
-{
- . = 0x02000000;
- .text BLOCK(4K) : ALIGN(4K)
- {
- *(.text)
- }
- . = 0x02100000;
- .data BLOCK(4K) : ALIGN(4K)
- {
-
- *(.rodata)
- *(.data)
- }
- .bss BLOCK(4K) (NOLOAD) : ALIGN(4K)
- {
- *(.bss)
- }
-} \ No newline at end of file