Files
5150/doscom.ld
2025-10-01 14:45:03 +02:00

21 lines
226 B
Plaintext

SECTIONS {
. = 0x100;
.text : {
KEEP(*(.init))
*(.text*)
}
.rodata : {
*(.rodata*)
}
.bss (NOLOAD) : {
* (.bss)
}
.data (NOLOAD) : {
*(.data)
}
}