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/litedram/gen-src/sdram_init/sdram_init.lds.S

16 lines
224 B
ArmAsm

#include "microwatt_soc.h"
SECTIONS
{
. = DRAM_INIT_BASE;
start = .;
.head : {
KEEP(*(.head))
}
. = DRAM_INIT_BASE | 0x1000;
.text : { *(.text*) *(.sfpr) *(.rodata*) }
.data : { *(.data*) }
.bss : { *(.bss*) }
}