You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
microwatt/loader/powerpc.lds.S

21 lines
287 B
ArmAsm

#include <microwatt_soc.h>
#define BASE_ADDR BRAM_BASE
SECTIONS
{
. = BASE_ADDR;
.head : {
KEEP(*(.head))
}
.text : { *(.text*) *(.sfpr) *(.rodata*) }
.data : { *(.data*) }
.bss : { *(.bss*) }
/DISCARD/ : {
*(.note.*)
*(.comment)
}
}