Files
osc2025/userprog/linker.ld
2025-04-08 07:01:24 +08:00

19 lines
202 B
Plaintext

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