aboutsummaryrefslogtreecommitdiffstats
path: root/picosoc/sections.lds
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2017-08-11 16:15:07 +0200
committerClifford Wolf <clifford@clifford.at>2017-08-11 16:15:07 +0200
commitfebb4b13183d89fbd7253a147408fcb9f9e3cca9 (patch)
treede8197bbf8734b09eeaf1b0950ccd1f5880387f2 /picosoc/sections.lds
parent78f2f5efd27765820849df4cfca2b9adc7bcb9b5 (diff)
downloadpicorv32-febb4b13183d89fbd7253a147408fcb9f9e3cca9.tar.gz
picorv32-febb4b13183d89fbd7253a147408fcb9f9e3cca9.zip
Improve and cleanup picosoc firmware
Diffstat (limited to 'picosoc/sections.lds')
-rw-r--r--picosoc/sections.lds8
1 files changed, 8 insertions, 0 deletions
diff --git a/picosoc/sections.lds b/picosoc/sections.lds
new file mode 100644
index 0000000..5c92529
--- /dev/null
+++ b/picosoc/sections.lds
@@ -0,0 +1,8 @@
+SECTIONS {
+ .memory : {
+ . = 0x000000;
+ start*(.text);
+ *(.text);
+ *(*);
+ }
+}