This commit is contained in:
2025-10-15 23:20:23 +02:00
parent 4f1ffac3f9
commit 9c89bbcfc2
14 changed files with 1255 additions and 39 deletions

View File

@@ -58,11 +58,20 @@ SECTIONS
{
*(COMMON)
*(.bss)
kernel_memory_end = .;
}
kernel_memory_end = 0x400000;
. = 0x400000;
/* The compiler may produce other sections, by default it will put them in
a segment with the same name. Simply add stuff here as needed. */
.userland-text ALIGN(16) : {
*(.userland-text)
}
.userland-rodata ALIGN(16) : {
*(.userland-rodata)
}
}