33,7 → 33,7 |
|
#include "mm.h" |
|
#define KERNEL_VIRTUAL_ADDRESS 0x80100000 |
#define KERNEL_VIRTUAL_ADDRESS 0x80150000 |
|
char *release = RELEASE; |
|
61,7 → 61,7 |
{ |
mmu_start(); |
version_print(); |
|
|
component_t components[COMPONENTS]; |
bootinfo_t bootinfo; |
init_components(components); |
77,6 → 77,7 |
} |
|
printf("\nCopying components\n"); |
|
unsigned int top = 0; |
bootinfo.cnt = 0; |
for (i = 0; i < COMPONENTS; i++) { |
88,7 → 89,6 |
bootinfo.tasks[bootinfo.cnt].size = components[i].size; |
bootinfo.cnt++; |
} |
|
top += components[i].size; |
printf("done.\n"); |
} |