Files
riscy-rust/test/flatfile.lds
2023-07-20 21:52:36 +01:00

12 lines
216 B
Plaintext

ENTRY(_start)
SECTIONS {
.text 0x80000000 : {
*(.start);
*(.text);
*(.text.*)
}
.bss : { *(.bss); *(.bss.*) }
.data : { *(.data); *(.data.*) }
.rodata : { *(.rodata); *(.rodata.*) }
}