moved stuff around

This commit is contained in:
2026-06-10 09:39:37 -04:00
parent 20fd32f978
commit 0f8d5f8ce7
8 changed files with 58 additions and 76 deletions

14
boot/boot.ld Normal file
View File

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