Refactor boot with polio.com first, then polmon

This commit is contained in:
2025-09-29 17:57:42 +02:00
parent 044e58ef12
commit dd5d329dff
3 changed files with 213 additions and 2 deletions

20
flat1000.ld Normal file
View File

@@ -0,0 +1,20 @@
SECTIONS {
. = 0x1000;
.text : {
KEEP(*(.init))
*(.text*)
}
.rodata : {
*(.rodata*)
}
.bss (NOLOAD) : {
* (.bss)
}
.data : {
*(.data)
}
}