this is working pretty well right now

This commit is contained in:
2026-04-16 15:47:33 -04:00
parent a84774e635
commit 51c553524f
11 changed files with 247 additions and 0 deletions

9
BUGS/linker.ld Normal file
View File

@@ -0,0 +1,9 @@
ENTRY(_start)
SECTIONS
{
. = 1M; /* Standard load address for kernels */
.text BLOCK(4K) : ALIGN(4K) { *(.multiboot) *(.text) }
.rodata BLOCK(4K) : ALIGN(4K) { *(.rodata) }
.data BLOCK(4K) : ALIGN(4K) { *(.data) }
.bss BLOCK(4K) : ALIGN(4K) { *(COMMON) *(.bss) }
}