aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/sections.lds
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/sections.lds')
-rw-r--r--firmware/sections.lds9
1 files changed, 9 insertions, 0 deletions
diff --git a/firmware/sections.lds b/firmware/sections.lds
new file mode 100644
index 0000000..5e6e40c
--- /dev/null
+++ b/firmware/sections.lds
@@ -0,0 +1,9 @@
+SECTIONS {
+ .memory : {
+ . = 0x000000;
+ start*(.text);
+ *(.text);
+ *(*);
+ end = .;
+ }
+}