mirror of
https://github.com/antonblanchard/microwatt.git
synced 2026-04-27 12:49:25 +00:00
committed by
Anton Blanchard
parent
d511e088d2
commit
ae55f5efbd
17
rust_lib_demo/powerpc.lds
Normal file
17
rust_lib_demo/powerpc.lds
Normal file
@@ -0,0 +1,17 @@
|
||||
SECTIONS
|
||||
{
|
||||
_start = .;
|
||||
. = 0;
|
||||
.head : {
|
||||
KEEP(*(.head))
|
||||
}
|
||||
. = 0x1000;
|
||||
.text : { *(.text) }
|
||||
. = 0x1f000;
|
||||
.data : { *(.data) }
|
||||
. = ALIGN(4);
|
||||
_bss = .; /* define a global symbol at bss start; used by startup code */
|
||||
.bss : { *(.bss) }
|
||||
. = ALIGN(4);
|
||||
_ebss = .; /* define a global symbol at bss end; used by startup code */
|
||||
}
|
||||
Reference in New Issue
Block a user