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.
|
#include "microwatt_soc.h"
|
|
|
|
SECTIONS
|
|
{
|
|
. = DRAM_INIT_BASE;
|
|
start = .;
|
|
.head : {
|
|
KEEP(*(.head))
|
|
}
|
|
. = DRAM_INIT_BASE | 0x1000;
|
|
|
|
.text : { *(.text*) *(.sfpr) *(.rodata*) }
|
|
.data : { *(.data*) }
|
|
.bss : { *(.bss*) }
|
|
}
|