summaryrefslogtreecommitdiffstats
path: root/script.ld
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2024-09-11 17:45:19 +0800
committerSadeep Madurange <sadeep@asciimx.com>2024-09-11 17:45:19 +0800
commit16f9e3be585e364c3ed5293507d3d2576a47a61a (patch)
tree0ad39cb0c59902c235c8764eb15f8f57de5c94ba /script.ld
parent45fec7ac2438081bc52889a4af7d95d0aafbd7ee (diff)
downloadbare-metal-arduino-due-16f9e3be585e364c3ed5293507d3d2576a47a61a.tar.gz
Rename stack top to sp and try to add a blink.
Diffstat (limited to 'script.ld')
-rw-r--r--script.ld2
1 files changed, 1 insertions, 1 deletions
diff --git a/script.ld b/script.ld
index ac49459..5f7f99e 100644
--- a/script.ld
+++ b/script.ld
@@ -38,5 +38,5 @@ SECTIONS
__bss_end__ = . ;
} > ram
- StackTop = ORIGIN(ram) + LENGTH(ram);
+ sp = ORIGIN(ram) + LENGTH(ram);
}