Skip to content

Commit

Permalink
Linker: Fix _sbss definition.
Browse files Browse the repository at this point in the history
  • Loading branch information
keirf committed Nov 3, 2019
1 parent 5898b04 commit f1e9b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FF_OSD.ld.S
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ SECTIONS

.bss : {
. = ALIGN(8);
_sbss = .;
_irq_stackbottom = .;
. = . + 512;
_irq_stacktop = .;
_thread_stackbottom = .;
. = . + 512;
_thread_stacktop = .;
_sbss = .;
*(.bss)
*(.bss*)
. = ALIGN(4);
Expand Down

0 comments on commit f1e9b51

Please sign in to comment.