Starting Point

This commit is contained in:
Hannes
2025-10-26 15:21:48 +01:00
parent 788ca8b1c0
commit 532c3fc295
21 changed files with 631 additions and 0 deletions

11
kernel.lds Normal file
View File

@@ -0,0 +1,11 @@
ENTRY(_start)
SECTIONS
{
. = 0x00008000;
.init : { *(.init) }
.text : { *(.text) }
.rodata : { *(.rodata) }
. = ALIGN(1<<20);
.data : { *(.data) }
.bss : { *(.bss) }
}