os3/stage1/linker.ld
John Stefanelli d57078cc2d
[MBR] Add GDT setup
[Host/Kernelcopy] Add support for direct writing into MBR's DAP
[Rawimg] Add kernelcopy support
2023-01-13 20:57:40 +01:00

17 lines
No EOL
163 B
Text

ENTRY(main)
SECTIONS
{
. = 0x10000;
.text : AT(0x10000){
*.o(.text);
}
.data : {
*.o(.data);
}
.rodata : {
*.o(.rodata);
}
.bss : {
*.o(.bss);
}
}