QEMU: Fix load address
0x81000000 -> 0x80100000
This commit is contained in:
parent
b35d58df1f
commit
7336f9e6d6
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ OUTPUT_FORMAT("elf64-littleriscv")
|
|||
ENTRY(_start)
|
||||
SECTIONS {
|
||||
/* R-X segment. */
|
||||
. = 0x81000000;
|
||||
. = 0x80100000;
|
||||
|
||||
.text : { *(.text) *(.text.*) }
|
||||
|
||||
|
|
Loading…
Reference in a new issue