Files
exkernel/linker.ld
Fabio Scotto di Santolo c59b4004e5 Implemented project structure
2025-11-29 18:43:07 +01:00

14 lines
233 B
Plaintext

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