bootloader/linker.ld
2025-01-11 20:19:02 +01:00

25 lines
228 B
Text

ENTRY(boot)
SECTIONS {
. = 0x7c00;
.text :
{
*(.boot)
*(.text)
}
.rodata :
{
*(.rodata)
}
.data :
{
*(.data)
}
.bss :
{
*(.bss)
}
}