commit 6b88b5381e79703df7e600e77a4f314eb8a236e0
parent 2fc189bbf4caf8173ecd86761ea052b551822d9a
Author: Drew DeVault <sir@cmpwn.com>
Date: Sat, 6 Nov 2021 09:41:45 +0100
rt/hare.sc: move .text higher in the address space
See similar change in the hare repo for details.
Signed-off-by: Drew DeVault <sir@cmpwn.com>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/rt/hare.sc b/rt/hare.sc
@@ -5,12 +5,12 @@ PHDRS {
}
ENTRY(_start);
SECTIONS {
- . = 0x10000;
+ . = 0x8000000;
.text : {
KEEP (*(.text))
*(.text.*)
} :text
- . = 0x8000000;
+ . = 0x80000000;
.data : {
KEEP (*(.data))
*(.data.*)