os3/stage1/linker.ld
John 5b17b79264
[Stage1] Fix linker to force main() at base address
[Stage1] Add basic write-to-screen utilities for VGA mode 3
2023-01-14 02:50:37 +01:00

20 lines
No EOL
226 B
Text

ENTRY(main)
SECTIONS
{
. = 0x10000;
.text : AT(0x10000){
stage1/CMakeFiles/stage1.dir/stage1.c.obj(.text);
}
.othertext : {
*(.text);
}
.data : {
*(.data);
}
.rodata : {
*(.rodata);
}
.bss : {
*(.bss);
}
}