This commit is contained in:
2026-06-14 00:34:11 -05:00
parent 4e8de774ef
commit 53c5d7d40c
12 changed files with 527 additions and 51 deletions

View File

@@ -3,6 +3,7 @@ ENTRY(_start)
SECTIONS
{
. = 2M;
__kernel_start = .;
.text BLOCK(4K) : ALIGN(4K)
{
@@ -25,4 +26,5 @@ SECTIONS
*(COMMON)
*(.bss)
}
__kernel_end = .;
}