Fixed linker to put rventrypoint at 0x80000000 in examples

This commit is contained in:
David Harris 2024-05-10 05:45:12 -07:00
parent 66b33c09be
commit b11a8ae926

View File

@ -4,7 +4,7 @@ ENTRY(rvtest_entry_point)
SECTIONS SECTIONS
{ {
. = 0x80000000; . = 0x80000000;
.text : { *(.text.init) } .text : { *(.text.init) *(.text) }
. = ALIGN(0x1000); . = ALIGN(0x1000);
.tohost : { *(.tohost) } .tohost : { *(.tohost) }
. = ALIGN(0x1000); . = ALIGN(0x1000);