RiscV-Formal/rv_tests/hello_world/linker.ld

26 lines
283 B
Plaintext
Raw Normal View History

2025-02-13 04:54:15 +00:00
OUTPUT_ARCH(riscv)
ENTRY(_start)
SECTIONS
{
/* Start execution at 0x80000000 */
. = 0x80000000;
.text : {
*(.text.init)
*(.text)
}
.rodata : {
*(.rodata)
}
.data : {
*(.data)
}
.bss : {
*(.bss)
}
}