This commit is contained in:
mtgmonkey
2025-07-29 09:46:44 -04:00
commit 147702a8fa
14 changed files with 1020 additions and 0 deletions

12
link-cfg/linker.ld Normal file
View File

@@ -0,0 +1,12 @@
ENTRY(start)
SECTIONS {
. = 1M;
.boot :
{
KEEP(*(.multiboot_header))
}
.text :
{
*(.text)
}
}