blob: c6af90cfdd0e97e9fefa5200bf3d1d6dd66c131a [file] [log] [blame]
OUTPUT_ARCH("riscv")
ENTRY(_start)
SECTIONS
{
. = 0x80000000;
.text.init : { *(.text.init) }
. = ALIGN(0x1000);
_end = .;
}