Dir cleanup

This commit is contained in:
2025-10-01 23:44:19 +02:00
parent bf9a88805f
commit 1b2237f2f7
39 changed files with 84 additions and 74 deletions

25
src/bootsect.ld Normal file
View File

@@ -0,0 +1,25 @@
SECTIONS {
. = 0x7c00;
.text : {
KEEP(*(.init))
*(.text*)
}
.rodata : {
*(.rodata*)
}
.bss (NOLOAD) : {
* (.bss)
}
.data (NOLOAD) : {
*(.data)
}
. = 0x7dfe;
.magic : {
SHORT(0xAA55);
}
}