This commit is contained in:
2025-04-30 23:03:44 -07:00
parent a464e109cb
commit ecfa54e225
30 changed files with 584 additions and 1191 deletions

17
bootloader/linker.ld Normal file
View File

@@ -0,0 +1,17 @@
ENTRY(start)
SECTIONS {
. = 1M;
.text : {
*(.multiboot)
*(.text*)
}
.rodata : { *(.rodata*) }
.data : { *(.data*) }
.bss : {
*(.bss*)
*(COMMON)
}
}