revitalized

This commit is contained in:
mtgmonkey 2025-05-13 00:10:37 -04:00
parent 2190a5c04d
commit a46f795b5a
12 changed files with 52 additions and 86 deletions

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

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