RiscV-Formal/rv_tests/hello_world/linker.ld
2025-02-12 23:54:15 -05:00

26 lines
283 B
Plaintext

OUTPUT_ARCH(riscv)
ENTRY(_start)
SECTIONS
{
/* Start execution at 0x80000000 */
. = 0x80000000;
.text : {
*(.text.init)
*(.text)
}
.rodata : {
*(.rodata)
}
.data : {
*(.data)
}
.bss : {
*(.bss)
}
}