diff options
author | Andrew Waterman <waterman@s144.Millennium.Berkeley.EDU> | 2011-04-15 15:52:00 -0700 |
---|---|---|
committer | Andrew Waterman <waterman@s144.Millennium.Berkeley.EDU> | 2011-04-15 15:52:00 -0700 |
commit | 0d603acb91f455adb879ea45fdb84313067f4293 (patch) | |
tree | c74a7524a52e898237446e0c2da55ac9be06f51c /pk/pk.ld | |
parent | ba0cf0546686acac7e891d9740009bcc4ada73ee (diff) | |
download | pk-0d603acb91f455adb879ea45fdb84313067f4293.zip pk-0d603acb91f455adb879ea45fdb84313067f4293.tar.gz pk-0d603acb91f455adb879ea45fdb84313067f4293.tar.bz2 |
[pk] load pk at addr 0; user stack top = MEMSIZE
Diffstat (limited to 'pk/pk.ld')
-rw-r--r-- | pk/pk.ld | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -11,15 +11,14 @@ SECTIONS /* Begining of code and text segment */ . = 0x00000000; - .boottext : - { - riscv-pk.o(.boottext) - } - - . = 0x70000000; _ftext = .; PROVIDE( eprol = . ); + .text : + { + riscv-pk.o(.text) + } + /* text: Program code section */ .text : { |