User base 0x0->0x10000

This commit is contained in:
Yifan Wu 2022-01-02 14:12:31 -08:00
parent 76b6ba65ac
commit 55cda2a855

View file

@ -2,7 +2,7 @@
OUTPUT_ARCH(riscv) OUTPUT_ARCH(riscv)
ENTRY(_start) ENTRY(_start)
BASE_ADDRESS = 0x0; BASE_ADDRESS = 0x10000;
SECTIONS SECTIONS
{ {
@ -29,4 +29,4 @@ SECTIONS
*(.eh_frame) *(.eh_frame)
*(.debug*) *(.debug*)
} }
} }