Oh yeah uh huh I'm making my own os...
os osdev asm assembly
at master 297 B view raw
1/* |$|*file*kernel.ld*| |$|*noclean*| */ 2 3OUTPUT_FORMAT("binary") 4ENTRY(_start) 5 6SECTIONS 7{ 8 .text : { *(.text*) } 9 .data : { *(.data*) } 10 .bss : { *(.bss*) } 11 .rodata : { *(.rodata*) } 12 13 /* after sections and before final . = ALIGN(512); */ 14 /*PROVIDE(_kernel_end = .);*/ 15}