add .data and .bss segments to picosoc
added .data and .bss segments to picosoc firmware linker script so that static variables may be used.
This commit is contained in:
parent
f52f36762e
commit
a0d5f8efd7
|
@ -1,6 +1,8 @@
|
||||||
SECTIONS {
|
SECTIONS {
|
||||||
.memory : {
|
.memory : {
|
||||||
sram = 0;
|
sram = 0;
|
||||||
|
*(.data);
|
||||||
|
*(.bss);
|
||||||
. = 0x100000;
|
. = 0x100000;
|
||||||
start*(.text);
|
start*(.text);
|
||||||
*(.text);
|
*(.text);
|
||||||
|
|
Loading…
Reference in New Issue