mirror of
https://github.com/YosysHQ/picorv32.git
synced 2025-01-03 03:43:38 -05:00
a0d5f8efd7
added .data and .bss segments to picosoc firmware linker script so that static variables may be used.
11 lines
117 B
Text
11 lines
117 B
Text
SECTIONS {
|
|
.memory : {
|
|
sram = 0;
|
|
*(.data);
|
|
*(.bss);
|
|
. = 0x100000;
|
|
start*(.text);
|
|
*(.text);
|
|
*(*);
|
|
}
|
|
}
|