Remove only first 32KB from allocatable memory

This commit is contained in:
Laurent Vivier 2004-05-11 23:09:45 +00:00
parent f77ce55dad
commit 09a8205e86

View File

@ -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;
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);
return 0;