Merge pull request #59 from tinyfpga/master
add .data and .bss segments to picosoc
This commit is contained in:
commit
a1f22a6d9c
|
@ -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