This commit is contained in:
mtgmonkey 2025-05-12 23:05:08 -04:00
commit 2190a5c04d
18 changed files with 745 additions and 0 deletions

12
linker.ld Normal file
View file

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