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

14
boot.ld Normal file
View File

@@ -0,0 +1,14 @@
ENTRY(_start)
SECTIONS
{
. = 0x7C00;
.text : {
*(.text)
}
.data : {
*(.data)
}
}