mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
Remove only first 32KB from allocatable memory
This commit is contained in:
parent
f77ce55dad
commit
09a8205e86
@ -161,11 +161,13 @@ int main(int argc, char** argv)
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("\nOk, booting the kernel.\n");
|
|
||||||
|
|
||||||
|
|
||||||
start_mem = boot_info.memory[0].addr + PAGE_SIZE;
|
start_mem = boot_info.memory[0].addr + PAGE_SIZE;
|
||||||
|
|
||||||
|
printf("\n");
|
||||||
|
printf("Physical address of kernel will be 0x%08lx\n", start_mem);
|
||||||
|
printf("Ok, booting the kernel.\n");
|
||||||
entry(physImage, kernel_size + BI_ALLOC_SIZE, start_mem);
|
entry(physImage, kernel_size + BI_ALLOC_SIZE, start_mem);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user