Skip to content

Commit

Permalink
Typo in default.ld
Browse files Browse the repository at this point in the history
HAKarlsson committed Nov 6, 2023
1 parent ff7ebd9 commit 5b91870
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion projects/demonstrator/default.ld
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ SECTIONS {
*(.bss .bss.*)
} > RAM

.stach : ALIGN(8) {
.stack : ALIGN(8) {
. += __stack_size;
__stack_pointer = .;
_end = .;
2 changes: 1 addition & 1 deletion projects/hello/default.ld
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ SECTIONS {
_end = .;
} > RAM

.stach : ALIGN(8) {
.stack : ALIGN(8) {
. += __stack_size;
__stack_pointer = .;
_end = .;
2 changes: 1 addition & 1 deletion projects/trapped/default.ld
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ SECTIONS {
_end = .;
} > RAM

.stach : ALIGN(8) {
.stack : ALIGN(8) {
. += __stack_size;
__stack_pointer = .;
_end = .;

0 comments on commit 5b91870

Please sign in to comment.