Rev 1734 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1734 | Rev 1756 | ||
|---|---|---|---|
| Line 71... | Line 71... | ||
| 71 | { |
71 | { |
| 72 | if (config.cpu_active == 1) { |
72 | if (config.cpu_active == 1) { |
| 73 | fb_init(bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height, bootinfo.screen.bpp, bootinfo.screen.scanline); |
73 | fb_init(bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height, bootinfo.screen.bpp, bootinfo.screen.scanline); |
| 74 | 74 | ||
| 75 | /* Initialize PIC */ |
75 | /* Initialize PIC */ |
| 76 | pic_init(); |
76 | pic_init(bootinfo.keyboard.addr, PAGE_SIZE); |
| 77 | 77 | ||
| 78 | cuda_init(bootinfo.keyboard.addr, bootinfo.keyboard.size); |
78 | cuda_init(bootinfo.keyboard.addr + 0x16000, 2 * PAGE_SIZE); |
| 79 | 79 | ||
| 80 | /* Merge all zones to 1 big zone */ |
80 | /* Merge all zones to 1 big zone */ |
| 81 | zone_merge_all(); |
81 | zone_merge_all(); |
| 82 | } |
82 | } |
| 83 | } |
83 | } |