Map all free memory pages and add to page stack

This commit is contained in:
2018-01-04 00:10:27 +01:00
parent cf1b631461
commit 5dc4e27392
3 changed files with 20 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ KERNEL_START = 0x10000;
SECTIONS
{
. = KERNEL_START + KERNEL_OFFSET;
kernel_start = .;
.text : AT(ADDR(.text) - KERNEL_OFFSET)
{
*(.multiboot)
@@ -24,4 +25,5 @@ SECTIONS
*(.COMMON)
*(.bss)
}
kernel_end = .;
}