aboutsummaryrefslogtreecommitdiffstats
path: root/dhrystone/sections.lds
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2016-06-07 17:09:26 +0200
committerClifford Wolf <clifford@clifford.at>2016-06-07 17:09:26 +0200
commitb99610fee30e41049e94687e350a720951a9f0e9 (patch)
treeb8a8e059e2e64f771c6a403bf89250abbd5b612d /dhrystone/sections.lds
parentbf062e39acf817c00da0c21ae7200d618167218a (diff)
downloadpicorv32-b99610fee30e41049e94687e350a720951a9f0e9.tar.gz
picorv32-b99610fee30e41049e94687e350a720951a9f0e9.zip
Using newlib libc from riscv-tools in dhrystone benchmark
Diffstat (limited to 'dhrystone/sections.lds')
-rw-r--r--dhrystone/sections.lds18
1 files changed, 18 insertions, 0 deletions
diff --git a/dhrystone/sections.lds b/dhrystone/sections.lds
new file mode 100644
index 0000000..3efb873
--- /dev/null
+++ b/dhrystone/sections.lds
@@ -0,0 +1,18 @@
+/*
+This is free and unencumbered software released into the public domain.
+
+Anyone is free to copy, modify, publish, use, compile, sell, or
+distribute this software, either in source code form or as a compiled
+binary, for any purpose, commercial or non-commercial, and by any
+means.
+*/
+
+SECTIONS {
+ .memory : {
+ . = 0x10000;
+ start*(.text);
+ *(.text);
+ *(*);
+ end = .;
+ }
+}