emcyfra/partial.ld

18 lines
189 B
Plaintext
Raw Normal View History

2025-02-19 14:23:20 +00:00
SECTIONS
{
.text : ALIGN(4) {
*(.text)
*(.rodata)
}
.data : ALIGN(4) {
*(.data)
}
.bss : ALIGN(4) {
*(.bss)
*(COMMON)
}
}