summaryrefslogtreecommitdiff
path: root/p/link.ld
diff options
context:
space:
mode:
authorAndrew Waterman <waterman@cs.berkeley.edu>2016-04-30 20:44:46 -0700
committerAndrew Waterman <waterman@cs.berkeley.edu>2016-04-30 20:44:46 -0700
commit3d45ca302dbf5ac22cfac8fb025c05c735c35e26 (patch)
treebc0184068ab372b75d30feb6ef2f1e0465c67fa3 /p/link.ld
parent0fc840489c21530a8bfdaecac1131fcd20bdaea2 (diff)
downloadenv-3d45ca302dbf5ac22cfac8fb025c05c735c35e26.zip
env-3d45ca302dbf5ac22cfac8fb025c05c735c35e26.tar.gz
env-3d45ca302dbf5ac22cfac8fb025c05c735c35e26.tar.bz2
ERET -> xRET; change memory map
Diffstat (limited to 'p/link.ld')
-rw-r--r--p/link.ld2
1 files changed, 1 insertions, 1 deletions
diff --git a/p/link.ld b/p/link.ld
index eeb3730..525fe34 100644
--- a/p/link.ld
+++ b/p/link.ld
@@ -2,7 +2,7 @@ OUTPUT_ARCH( "riscv" )
SECTIONS
{
- . = 0;
+ . = 0x80000000;
.text.init : { *(.text.init) }
.text : { *(.text) }
.data ALIGN(0x1000) : { *(.data) }