rust-luciaos/lucia.ld
2023-02-17 01:53:13 -06:00

21 lines
243 B
Plaintext

OUTPUT_FORMAT(binary)
SECTIONS
{
. = 0x800000;
.entry : {
*(.entry)
}
.text : {
*(.text);
}
.rodata : {
*(.rodata)
}
.data : {
*(.data)
}
.bss : {
*(.bss)
}
}