initial commit

This commit is contained in:
2026-06-09 23:16:25 -05:00
commit 20fd32f978
8 changed files with 439 additions and 0 deletions

24
kernel.ld Normal file
View File

@@ -0,0 +1,24 @@
ENTRY(_start)
SECTIONS
{
. = 0x10000;
.text : {
*(.text)
}
.rodata : {
*(.rodata)
}
.data : {
*(.data)
}
.bss : {
*(.bss)
}
_end = .;
}