aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/sections.lds
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2015-06-06 14:01:37 +0200
committerClifford Wolf <clifford@clifford.at>2015-06-06 14:14:32 +0200
commit77ba5a18973bd02b461ab96047acfcc3fb62cf7b (patch)
tree573afedb6a3a14c91224e16724fa21ba3a939de2 /firmware/sections.lds
downloadpicorv32-77ba5a18973bd02b461ab96047acfcc3fb62cf7b.tar.gz
picorv32-77ba5a18973bd02b461ab96047acfcc3fb62cf7b.zip
Initial import
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 = .;
+ }
+}