ThiesyyyOS/src/kernel.ld

9 lines
143 B
Plaintext
Executable File

OUTPUT_FORMAT("binary")
ENTRY(RealMode)
SECTIONS
{
.text 0x8000 : { *(.text) }
.data : { *(.data) }
.bss : { *(.bss) }
}