summaryrefslogtreecommitdiffhomepage
path: root/Linker/PowerPC.ld
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-26 12:43:00 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-26 12:43:24 +0100
commitae89bf9564c59ea3aee10f175d473e562af793f8 (patch)
treeedd0f19b3fe1939fa23e9985a7ed14fe5b48fbe9 /Linker/PowerPC.ld
parent5d712c34f9254351e5c9f6fd4c465b42114661d0 (diff)
h-core: update copyright year.
add linker json for PEF targets. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Linker/PowerPC.ld')
-rw-r--r--Linker/PowerPC.ld28
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