Files
exkernel/example/linker.ld
Fabio Scotto di Santolo 7eaf73e6fe Move test in a specific folder
2025-11-29 18:47:37 +01:00

14 lines
233 B
Plaintext

SECTIONS
{
. = 0x80200000;
.text : {
*(.text.entry) /* entry point */
*(.text*) /* all text sections */
}
.rodata : { *(.rodata*) }
.data : { *(.data*) }
.bss : { *(.bss*) }
}