Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1130 → Rev 1131

/boot/trunk/arch/ppc32/loader/main.c
36,11 → 36,6
 
#define HEAP_GAP 1024000
 
typedef struct {
memmap_t memmap;
screen_t screen;
} bootinfo_t;
 
bootinfo_t bootinfo;
 
 
123,5 → 118,5
fix_overlap(&bootinfo, &bootinfo_pa, "Boot info", &top);
printf("\nBooting the kernel...\n");
jump_to_kernel(bootinfo_pa, trans_pa, KERNEL_SIZE, real_mode_pa);
jump_to_kernel(bootinfo_pa, sizeof(bootinfo), trans_pa, KERNEL_SIZE, real_mode_pa);
}