os3/stage1/linker.ld
John 3f7e02533f
[MBR] Successfully jump to protected mode
[MBR} Successfully set VGA video mode 3
[Host/KernelCopy] Fix MBR_PACKET definition and buffer address
[RawIMG] Fix linux iamge generation script
[Host/GDTCreator] Fix low limit values
2023-01-14 02:15:53 +01:00

17 lines
No EOL
155 B
Text

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