picorv32/picosoc/sections.lds
Luke Valenty a0d5f8efd7
add .data and .bss segments to picosoc
added .data and .bss segments to picosoc firmware linker script so that static variables may be used.
2018-04-07 18:42:59 -07:00

11 lines
117 B
Text

SECTIONS {
.memory : {
sram = 0;
*(.data);
*(.bss);
. = 0x100000;
start*(.text);
*(.text);
*(*);
}
}