QEMU: Fix load address

0x81000000 -> 0x80100000
This commit is contained in:
Thomas Muller 2022-01-04 02:08:31 -05:00
parent b35d58df1f
commit 7336f9e6d6
Signed by: thomas
GPG key ID: AF006EB730564952

View file

@ -3,7 +3,7 @@ OUTPUT_FORMAT("elf64-littleriscv")
ENTRY(_start)
SECTIONS {
/* R-X segment. */
. = 0x81000000;
. = 0x80100000;
.text : { *(.text) *(.text.*) }