summaryrefslogtreecommitdiffstats
path: root/scripts/quartus/firmware.lds
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/quartus/firmware.lds')
-rw-r--r--scripts/quartus/firmware.lds11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/quartus/firmware.lds b/scripts/quartus/firmware.lds
new file mode 100644
index 0000000..970000a
--- /dev/null
+++ b/scripts/quartus/firmware.lds
@@ -0,0 +1,11 @@
+SECTIONS {
+ .memory : {
+ . = 0x000000;
+ *(.init);
+ *(.text);
+ *(*);
+ . = ALIGN(4);
+ end = .;
+ }
+}
+