mirror of https://github.com/YosysHQ/picorv32.git
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 {
|
||||
.memory : {
|
||||
sram = 0;
|
||||
*(.data);
|
||||
*(.bss);
|
||||
. = 0x100000;
|
||||
start*(.text);
|
||||
*(.text);
|
||||
|
|
Loading…
Reference in New Issue