init version

This commit is contained in:
2026-02-20 22:17:31 +01:00
commit c4c1a4350c
28 changed files with 755 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
ENTRY(start)
SECTIONS {
. = 1M;
.boot : ALIGN(16) {
KEEP(*(.multiboot2_header))
}
.text ALIGN(4) : {
*(.text*)
}
.rodata ALIGN(4) : {
*(.rodata*)
}
.data ALIGN(4) : {
*(.data*)
}
.bss ALIGN(4) : {
*(.bss*)
*(COMMON)
}
}