[MEMORY] Memory pages and paging management

This commit is contained in:
2017-01-24 09:58:28 +01:00
parent 5dd42d26ae
commit 4bf5835dc4
10 changed files with 344 additions and 5 deletions

View File

@@ -7,6 +7,7 @@ KERNEL_START = 0x100000;
SECTIONS
{
. = KERNEL_START + KERNEL_OFFSET;
kernel_start = .;
.text : AT(ADDR(.text) - KERNEL_OFFSET)
{
@@ -30,4 +31,6 @@ SECTIONS
*(.COMMON)
*(.bss)
}
. = ALIGN(4096);
kernel_end = .;
}