Merge pull request #59 from tinyfpga/master

add .data and .bss segments to picosoc
This commit is contained in:
Clifford Wolf 2018-04-08 13:36:55 +02:00 committed by GitHub
commit a1f22a6d9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,8 @@
SECTIONS { SECTIONS {
.memory : { .memory : {
sram = 0; sram = 0;
*(.data);
*(.bss);
. = 0x100000; . = 0x100000;
start*(.text); start*(.text);
*(.text); *(.text);