This commit is contained in:
nub31
2025-09-05 23:59:59 +02:00
parent 2aa44eaa51
commit bcf05c055e
6 changed files with 57 additions and 10 deletions

View File

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