This website requires JavaScript.
Explore
Help
Register
Sign In
colin
/
picorv32
Watch
1
Star
0
Fork
You've already forked picorv32
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
2ceb472178
picorv32
/
picosoc
/
sections.lds
12 lines
117 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Improve and cleanup picosoc firmware
2017-08-11 22:15:07 +08:00
SECTIONS {
.memory : {
Removed UB from picosoc demo firmware
2017-09-16 01:55:22 +08: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-08 09:42:59 +08:00
*(.data);
*(.bss);
Improve picosoc firmware build process
2017-09-15 21:19:48 +08:00
. = 0x100000;
Improve and cleanup picosoc firmware
2017-08-11 22:15:07 +08:00
start*(.text);
*(.text);
*(*);
}
}