transfer to local git!

This commit is contained in:
2025-12-30 18:49:57 +00:00
commit 2305de8699
302 changed files with 3100 additions and 0 deletions

16
boot/linker.ld Normal file
View File

@@ -0,0 +1,16 @@
ENTRY(start)
SECTIONS {
. = 1M;
.boot :
{
/* ensure that the multiboot header is at the beginning */
KEEP(*(.multiboot_header))
}
.text :
{
*(.text)
}
}