summaryrefslogtreecommitdiffstats
path: root/firmware.lds
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2022-11-24 18:52:37 +0000
committerYann Herklotz <git@yannherklotz.com>2022-11-24 18:52:51 +0000
commit098157d5bb4687e0131ee117b75845ed19a4b6bc (patch)
tree87d20a4823f074c962d7bc6b0f1c3581f56afd29 /firmware.lds
parent46c49262fc9910ba5ff92e76d567ed2e4446fb41 (diff)
downloadbutterstick-098157d5bb4687e0131ee117b75845ed19a4b6bc.tar.gz
butterstick-098157d5bb4687e0131ee117b75845ed19a4b6bc.zip
Add initial files for icestorm
Diffstat (limited to 'firmware.lds')
-rw-r--r--firmware.lds11
1 files changed, 11 insertions, 0 deletions
diff --git a/firmware.lds b/firmware.lds
new file mode 100644
index 0000000..970000a
--- /dev/null
+++ b/firmware.lds
@@ -0,0 +1,11 @@
+SECTIONS {
+ .memory : {
+ . = 0x000000;
+ *(.init);
+ *(.text);
+ *(*);
+ . = ALIGN(4);
+ end = .;
+ }
+}
+