This website requires JavaScript.
Explore
Help
Sign In
Hardware
/
picorv32
mirror of
https://github.com/YosysHQ/picorv32.git
Watch
1
Star
0
Fork
You've already forked picorv32
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
a1f22a6d9c
picorv32
/
picosoc
/
sections.lds
12 lines
117 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Improve and cleanup picosoc firmware
2017-08-11 10:15:07 -04:00
SECTIONS {
.memory : {
Removed UB from picosoc demo firmware
2017-09-15 13:55:22 -04:00
sram = 0;
add .data and .bss segments to picosoc added .data and .bss segments to picosoc firmware linker script so that static variables may be used.
2018-04-07 21:42:59 -04:00
*(.data);
*(.bss);
Improve picosoc firmware build process
2017-09-15 09:19:48 -04:00
. = 0x100000;
Improve and cleanup picosoc firmware
2017-08-11 10:15:07 -04:00
start*(.text);
*(.text);
*(*);
}
}